/**
  * Create a new password controller instance.
  *
  * @param  \Illuminate\Contracts\Auth\Guard  $auth
  * @param  \Illuminate\Contracts\Auth\PasswordBroker  $passwords
  * @return void
  */
 public function __construct(Guard $auth, PasswordBroker $passwords)
 {
     parent::__construct();
     $this->auth = $auth;
     $this->passwords = $passwords;
     $this->middleware('guest');
 }
 public function __construct(Product $p)
 {
     parent::__construct();
 }
Пример #3
0
 public function __construct()
 {
     parent::__construct();
 }
 public function __construct(Product $product)
 {
     $this->product = $product;
     parent::__construct();
 }
Пример #5
0
 public function __construct(Task $task)
 {
     parent::__construct();
     $this->task = $task;
 }
Пример #6
0
 public function __construct(Customer $customer)
 {
     parent::__construct();
     $this->customer = $customer;
 }