| Total Complexity | 2 |
| Total Lines | 23 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 23 | abstract class DomainBootloader extends Bootloader |
||
| 24 | { |
||
| 25 | protected const SINGLETONS = [ |
||
| 26 | CoreInterface::class => [self::class, 'domainCore'] |
||
| 27 | ]; |
||
| 28 | |||
| 29 | // the set of interceptors for the domain code |
||
| 30 | protected const INTERCEPTORS = []; |
||
| 31 | |||
| 32 | /** |
||
| 33 | * @param Core $core |
||
| 34 | * @param ContainerInterface $container |
||
| 35 | * @return InterceptableCore |
||
| 36 | */ |
||
| 37 | protected function domainCore(Core $core, ContainerInterface $container) |
||
| 48 |