1 | <?php |
||
9 | abstract class ConfigurableDiContainerFactory implements DiContainerFactory |
||
10 | { |
||
11 | public function create(array $config): ContainerInterface |
||
19 | |||
20 | abstract protected function newInstance(): ContainerInterface; |
||
21 | |||
22 | abstract protected function configure(ContainerInterface $container, array $config): void; |
||
23 | } |
||
24 |