App\Console\Commands\SendRenewalInvoices::__construct PHP Method

__construct() public method

SendRenewalInvoices constructor.
public __construct ( ContactMailer $mailer, AccountRepository $repo )
$mailer App\Ninja\Mailers\ContactMailer
$repo App\Ninja\Repositories\AccountRepository
    public function __construct(Mailer $mailer, AccountRepository $repo)
    {
        parent::__construct();
        $this->mailer = $mailer;
        $this->accountRepo = $repo;
    }