Total Complexity | 3 |
Total Lines | 36 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
12 | class EventCacheServiceProvider implements ServiceProviderInterface |
||
13 | { |
||
14 | /** |
||
15 | * @param \Pimple\Container $container |
||
16 | * |
||
17 | * @return void |
||
18 | */ |
||
19 | public function register(Container $container): void |
||
20 | { |
||
21 | $this->registerEventErrorHandler($container); |
||
22 | } |
||
23 | |||
24 | /** |
||
25 | * @param \Pimple\Container $container |
||
26 | * |
||
27 | * @return \Jellyfish\EventCache\EventCacheServiceProvider |
||
28 | */ |
||
29 | protected function registerEventErrorHandler(Container $container): EventCacheServiceProvider |
||
48 | } |
||
49 | } |
||
50 |