| 1 | <?php | ||
| 11 | final class Configurator implements ConfiguratorInterface | ||
| 12 | { | ||
| 13 | /** | ||
| 14 | * @var Container | ||
| 15 | */ | ||
| 16 | private $container; | ||
| 17 | |||
| 18 | /** | ||
| 19 | * @param Container $container | ||
| 20 | */ | ||
| 21 | public function setContainer($container) | ||
| 25 | |||
| 26 | public function addApplicationConfig(ApplicationConfig $config, $prefix = 'config') | ||
| 30 | |||
| 31 | public function addServiceConfig(ServiceConfig $config) | ||
| 35 | |||
| 36 | public function addInflectorConfig(InflectorConfig $config) | ||
| 40 | } | ||
| 41 |