Total Complexity | 2 |
Total Lines | 22 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
17 | class LoggerBootstrapper extends Bootstrapper implements ILazyBootstrapper |
||
18 | { |
||
19 | /** |
||
20 | * @inheritdoc |
||
21 | */ |
||
22 | public function getBindings(): array |
||
23 | { |
||
24 | return [ |
||
25 | LoggerInterface::class, |
||
26 | ]; |
||
27 | } |
||
28 | |||
29 | /** |
||
30 | * @inheritdoc |
||
31 | */ |
||
32 | public function registerBindings(IContainer $container): void |
||
39 | } |
||
40 | } |
||
41 |