| Total Complexity | 3 |
| Total Lines | 28 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 23 | abstract class Bootloader implements BootloaderInterface, DependedInterface |
||
| 24 | { |
||
| 25 | protected const BINDINGS = []; |
||
| 26 | protected const SINGLETONS = []; |
||
| 27 | protected const DEPENDENCIES = []; |
||
| 28 | |||
| 29 | /** |
||
| 30 | * {@inheritdoc} |
||
| 31 | */ |
||
| 32 | public function defineBindings(): array |
||
| 33 | { |
||
| 34 | return static::BINDINGS; |
||
| 35 | } |
||
| 36 | |||
| 37 | /** |
||
| 38 | * {@inheritdoc} |
||
| 39 | */ |
||
| 40 | public function defineSingletons(): array |
||
| 43 | } |
||
| 44 | |||
| 45 | /** |
||
| 46 | * {@inheritdoc} |
||
| 47 | */ |
||
| 48 | public function defineDependencies(): array |
||
| 51 | } |
||
| 52 | } |
||
| 53 |