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