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