| 1 | <?php |
||
| 11 | final class Configurator implements ContainerConfigurator |
||
| 12 | { |
||
| 13 | /** |
||
| 14 | * @var ServiceProviderInterface[] |
||
| 15 | */ |
||
| 16 | private $providers = []; |
||
| 17 | |||
| 18 | public function addApplicationConfig(ApplicationConfig $config, $prefix = 'config') |
||
| 22 | |||
| 23 | public function addServiceConfig(ServiceConfig $config) |
||
| 27 | |||
| 28 | public function addInflectorConfig(InflectorConfig $config) |
||
| 32 | |||
| 33 | /** |
||
| 34 | * @internal |
||
| 35 | * |
||
| 36 | * @return ServiceProviderInterface |
||
| 37 | */ |
||
| 38 | public function getServiceProvider() |
||
| 42 | } |
||
| 43 |