| 1 | <?php declare(strict_types = 1);  | 
            ||
| 7 | abstract class CompositeConfigurator extends DefaultConfigurator  | 
            ||
| 8 | { | 
            ||
| 9 | /** @var Configurator[] */  | 
            ||
| 10 | public $configurators = [];  | 
            ||
| 11 | |||
| 12 | 19 | public function __construct(ContainerBuilder $containerBuilder)  | 
            |
| 17 | |||
| 18 | /**  | 
            ||
| 19 | * @return Configurator[]  | 
            ||
| 20 | */  | 
            ||
| 21 | abstract protected function createConfigurators(): array;  | 
            ||
| 22 | |||
| 23 | abstract public function getConfigKey(): ?string;  | 
            ||
| 24 | |||
| 25 | 18 | public function buildDefaultConfig(): array  | 
            |
| 34 | |||
| 35 | 18 | public function configureWithConfig(array $config): void  | 
            |
| 42 | }  | 
            ||
| 43 |