App\Console\Commands\ChargeRenewalInvoices::__construct PHP Метод

__construct() публичный Метод

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