Owl\Services\UserService::__construct PHP Метод

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

public __construct ( Owl\Repositories\UserRepositoryInterface $userRepo, Owl\Repositories\LoginTokenRepositoryInterface $loginTokenRepo, Owl\Repositories\UserMailNotificationRepositoryInterface $mailNotifyRepo )
$userRepo Owl\Repositories\UserRepositoryInterface
$loginTokenRepo Owl\Repositories\LoginTokenRepositoryInterface
$mailNotifyRepo Owl\Repositories\UserMailNotificationRepositoryInterface
    public function __construct(UserRepositoryInterface $userRepo, LoginTokenRepositoryInterface $loginTokenRepo, UserMailNotificationRepositoryInterface $mailNotifyRepo)
    {
        $this->userRepo = $userRepo;
        $this->loginTokenRepo = $loginTokenRepo;
        $this->mailNotifyRepo = $mailNotifyRepo;
    }