1 | <?php |
||
7 | class ComposerSecurityCheckServiceProvider 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 | * Bootstrap the application events. |
||
18 | * |
||
19 | * @return void |
||
20 | */ |
||
21 | 40 | public function boot() |
|
33 | |||
34 | /** |
||
35 | * Register the service provider. |
||
36 | * |
||
37 | * @return void |
||
38 | */ |
||
39 | 40 | public function register() |
|
49 | |||
50 | /** |
||
51 | * Get the services provided by the provider. |
||
52 | * |
||
53 | * @return string[] |
||
54 | */ |
||
55 | public function provides() |
||
59 | } |
||
60 |