如果构造函数包含parent :: __ construct(),Laravel在Controller的构造函数中分配中间件?

时间:2016-10-25 07:31:55

标签: laravel constructor

以下是

的示例

Laravel:在Controller的构造函数中分配中间件

https://www.tutorialspoint.com/laravel/laravel_controllers.htm

class UserController extends Controller {
   public function __construct(){
   $this->middleware('auth');
   }
}

我的问题应该是

class UserController extends Controller {
   public function __construct(){
      $this->middleware('auth');
      parent::__onstruct();
  }
}

由于UserConstroller覆盖了__construct。如果它不包含parent :: __ construct(),则不会调用父构造函数。这可能是一个问题,对吗?

0 个答案:

没有答案