Owl\Handlers\Events\EmailNotification::__construct PHP Метод

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

public __construct ( Illuminate\Contracts\Mail\Mailer $mailer, ItemService $itemService, UserService $userService, UserRoleService $userRoleService, MailNotifyService $mailNotifyService )
$mailer Illuminate\Contracts\Mail\Mailer
$itemService Owl\Services\ItemService
$userService Owl\Services\UserService
$userRoleService Owl\Services\UserRoleService
$mailNotifyService Owl\Services\MailNotifyService
    public function __construct(Mailer $mailer, ItemService $itemService, UserService $userService, UserRoleService $userRoleService, MailNotifyService $mailNotifyService)
    {
        $this->mail = $mailer;
        $this->itemService = $itemService;
        $this->userService = $userService;
        $this->userRoleService = $userRoleService;
        $this->mailNotifyService = $mailNotifyService;
    }