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