Пример #1
0
 public function __construct(ActivityService $service)
 {
     $this->service = $service;
     parent::__construct();
 }
Пример #2
0
 public function __construct(ProjectService $service)
 {
     $this->service = $service;
     parent::__construct();
 }
Пример #3
0
 public function __construct(NotificationService $notificationService, NotificationRepository $notificationRepository)
 {
     parent::__construct();
     $this->notificationService = $notificationService;
     $this->notificationRepository = $notificationRepository;
 }
Пример #4
0
 /**
  * @param \Giraffe\Images\ImageService $imageService
  */
 public function __construct(UploadService $uploadService)
 {
     $this->service = $uploadService;
     parent::__construct();
 }