1 | <?php declare(strict_types=1); |
||
29 | class FileSystemContainerConfigurator implements ContainerConfiguratorInterface |
||
30 | { |
||
31 | /** @var callable */ |
||
32 | const CONFIGURATOR = [self::class, self::CONTAINER_METHOD_NAME]; |
||
33 | |||
34 | /** |
||
35 | 1 | * @inheritdoc |
|
36 | */ |
||
37 | public static function configureContainer(LimoncelloContainerInterface $container): void |
||
43 | } |
||
44 |