1 | <?php |
||
7 | class AuthServiceProvider extends ServiceProvider |
||
8 | { |
||
9 | /** |
||
10 | * Indicates if loading of the provider is deferred. |
||
11 | * |
||
12 | * @var bool |
||
13 | */ |
||
14 | protected $defer = true; |
||
15 | |||
16 | /** |
||
17 | * Perform post-registration booting of services. |
||
18 | * |
||
19 | * @return void |
||
20 | */ |
||
21 | 1 | public function boot() |
|
27 | |||
28 | /** |
||
29 | * Register the service provider. |
||
30 | * |
||
31 | * @return void |
||
32 | */ |
||
33 | 1 | public function register() |
|
39 | |||
40 | /** |
||
41 | * Register auth service configuration. |
||
42 | * |
||
43 | * @return void |
||
44 | */ |
||
45 | 1 | protected function registerAuthServiceConfig() |
|
51 | |||
52 | /** |
||
53 | * Register auth event listener. |
||
54 | * |
||
55 | * @return void |
||
56 | */ |
||
57 | 1 | protected function registerAuthEventListener() |
|
67 | |||
68 | /** |
||
69 | * Register auth service. |
||
70 | * |
||
71 | * @return void |
||
72 | */ |
||
73 | protected function registerAuthService() |
||
82 | |||
83 | /** |
||
84 | * Get the services provided by the provider. |
||
85 | * |
||
86 | * @return array |
||
87 | */ |
||
88 | 1 | public function provides() |
|
96 | } |
||
97 |