Exemplo n.º 1
0
 public function __construct(Task $task)
 {
     $this->task = $task;
     parent::__construct($this->task);
 }
Exemplo n.º 2
0
 public function __construct(Kind $kind)
 {
     $this->kind = $kind;
     parent::__construct($this->kind);
 }
Exemplo n.º 3
0
 public function __construct(File $files)
 {
     $this->files = $files;
     parent::__construct($this->files);
 }
Exemplo n.º 4
0
 public function __construct(Order $order)
 {
     $this->order = $order;
     parent::__construct($this->order);
 }
Exemplo n.º 5
0
 public function __construct(Unit $unit)
 {
     $this->unit = $unit;
     parent::__construct($this->unit);
 }
Exemplo n.º 6
0
 public function __construct(Ship $ship)
 {
     $this->ship = $ship;
     parent::__construct($this->ship);
 }
Exemplo n.º 7
0
 public function __construct(User $user)
 {
     $this->user = $user;
     parent::__construct($this->user);
 }
Exemplo n.º 8
0
 public function __construct(News $news)
 {
     $this->news = $news;
     parent::__construct($this->news);
 }
Exemplo n.º 9
0
 public function __construct(Category $category)
 {
     $this->category = $category;
     parent::__construct($this->category);
 }
Exemplo n.º 10
0
 public function __construct(Network $network)
 {
     $this->network = $network;
     parent::__construct($this->network);
 }
Exemplo n.º 11
0
 public function __construct(Purpose $purpose)
 {
     $this->purpose = $purpose;
     parent::__construct($this->purpose);
 }
Exemplo n.º 12
0
 /**
  * UsersRepository.
  * 
  * @param User $user
  */
 public function __construct(User $user)
 {
     parent::__construct($user);
 }