Also call parent constructor.

This commit is contained in:
James Cole 2016-01-08 20:40:48 +01:00
parent 8b2d7fc32f
commit b4c9a7698e
5 changed files with 5 additions and 0 deletions

View File

@ -14,6 +14,7 @@ class HelpController extends Controller
public function __construct()
{
$this->middleware('auth');
parent::__construct();
}
/**

View File

@ -23,6 +23,7 @@ class JsonController extends Controller
public function __construct()
{
$this->middleware('auth');
parent::__construct();
}
/**

View File

@ -20,6 +20,7 @@ class NewUserController extends Controller
public function __construct()
{
$this->middleware('auth');
parent::__construct();
}

View File

@ -18,6 +18,7 @@ class ProfileController extends Controller
public function __construct()
{
$this->middleware('auth');
parent::__construct();
}
/**

View File

@ -13,6 +13,7 @@ class SearchController extends Controller
public function __construct()
{
$this->middleware('auth');
parent::__construct();
}
/**