Total Complexity | 2 |
Total Lines | 26 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
27 | class FacadeServiceProvider extends ServiceProvider |
||
28 | { |
||
29 | /** |
||
30 | * Indicates if loading of the provider is deferred. |
||
31 | * |
||
32 | * @var bool |
||
33 | */ |
||
34 | protected $defer = true; |
||
35 | |||
36 | /** |
||
37 | * Get the services provided by the provider. |
||
38 | * |
||
39 | * @return array |
||
40 | */ |
||
41 | public function provides(): array |
||
42 | { |
||
43 | return []; |
||
44 | } |
||
45 | |||
46 | /** |
||
47 | * Register the service providers. |
||
48 | * |
||
49 | * @return void |
||
50 | */ |
||
51 | public function register(): void |
||
53 | } |
||
54 | } |
||
55 |