Total Complexity | 6 |
Total Lines | 33 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
11 | class MediaLibraryModuleServiceProvider extends AbstractSignatureServiceProvider implements BootableServiceProviderInterface |
||
12 | { |
||
13 | /** |
||
14 | * {@inheritdoc} |
||
15 | */ |
||
16 | public function provides() |
||
17 | { |
||
18 | return []; |
||
19 | } |
||
20 | |||
21 | /** |
||
22 | * {@inheritdoc} |
||
23 | */ |
||
24 | public function register() |
||
25 | { |
||
26 | } |
||
27 | |||
28 | public function boot() |
||
29 | { |
||
30 | $this->registerResources(); |
||
31 | } |
||
32 | |||
33 | protected function registerResources() |
||
44 | } |
||
45 | } |
||
46 | } |
||
47 | } |
||
48 |