File tree Expand file tree Collapse file tree 4 files changed +8
-4
lines changed Expand file tree Collapse file tree 4 files changed +8
-4
lines changed Original file line number Diff line number Diff line change 1
1
<?php namespace App \Http \Controllers \Auth ;
2
2
3
+ use Illuminate \Routing \Controller ;
3
4
use Illuminate \Contracts \Auth \Guard ;
4
-
5
5
use App \Http \Requests \Auth \LoginRequest ;
6
6
use App \Http \Requests \Auth \RegisterRequest ;
7
7
8
8
/**
9
9
* @Middleware("guest", except={"logout"})
10
10
*/
11
- class AuthController {
11
+ class AuthController extends Controller {
12
12
13
13
/**
14
14
* The Guard implementation.
Original file line number Diff line number Diff line change 1
1
<?php namespace App \Http \Controllers \Auth ;
2
2
3
3
use Illuminate \Http \Request ;
4
+ use Illuminate \Routing \Controller ;
4
5
use Illuminate \Contracts \Auth \PasswordBroker ;
5
6
use Symfony \Component \HttpKernel \Exception \NotFoundHttpException ;
6
7
7
8
/**
8
9
* @Middleware("guest")
9
10
*/
10
- class PasswordController {
11
+ class PasswordController extends Controller {
11
12
12
13
/**
13
14
* The password broker implementation.
Original file line number Diff line number Diff line change 1
1
<?php namespace App \Http \Controllers ;
2
2
3
- class HomeController {
3
+ use Illuminate \Routing \Controller ;
4
+
5
+ class HomeController extends Controller {
4
6
5
7
/*
6
8
|--------------------------------------------------------------------------
Original file line number Diff line number Diff line change 112
112
'Illuminate\Auth\AuthServiceProvider ' ,
113
113
'Illuminate\Cache\CacheServiceProvider ' ,
114
114
'Illuminate\Foundation\Providers\ConsoleSupportServiceProvider ' ,
115
+ 'Illuminate\Routing\ControllerServiceProvider ' ,
115
116
'Illuminate\Cookie\CookieServiceProvider ' ,
116
117
'Illuminate\Database\DatabaseServiceProvider ' ,
117
118
'Illuminate\Encryption\EncryptionServiceProvider ' ,
You can’t perform that action at this time.
0 commit comments