1 | <?php |
||
7 | class ServiceProvider extends IlluminateServiceProvider |
||
8 | { |
||
9 | /** |
||
10 | * Indicates if loading of the provider is deferred. |
||
11 | * |
||
12 | * @var bool |
||
13 | */ |
||
14 | protected $defer = true; |
||
15 | |||
16 | /** |
||
17 | * Configure package paths. |
||
18 | */ |
||
19 | 13 | private function configurePaths() |
|
25 | |||
26 | /** |
||
27 | * Merge configuration. |
||
28 | */ |
||
29 | 13 | private function mergeConfig() |
|
35 | |||
36 | /** |
||
37 | * Get the services provided by the provider. |
||
38 | * |
||
39 | * @return array |
||
40 | */ |
||
41 | public function provides() |
||
42 | { |
||
43 | return ['pragmarx.google2fa']; |
||
44 | } |
||
45 | |||
46 | /** |
||
47 | * Register the service provider. |
||
48 | * |
||
49 | * @return void |
||
50 | */ |
||
51 | 13 | public function register() |
|
61 | } |
||
62 |