Exemple #1
0
 public function __construct(User $identity, Article $article)
 {
     $this->article = $article;
     parent::__construct($identity);
 }
Exemple #2
0
 public function __construct(User $identity, File $file)
 {
     $this->file = $file;
     parent::__construct($identity);
 }
Exemple #3
0
 public function __construct(User $identity, Category $category)
 {
     $this->category = $category;
     parent::__construct($identity);
 }
Exemple #4
0
 public function __construct(User $identity, Account $account)
 {
     $this->account = $account;
     parent::__construct($identity);
 }