| 1 | <?php |
||
| 10 | final class AliasingExtension implements ExtensionInterface |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * {@inheritdoc} |
||
| 14 | */ |
||
| 15 | public function load(array $config, ContainerBuilder $containerBuilder) |
||
| 16 | { |
||
| 17 | $loader = new YamlFileLoader($containerBuilder, new FileLocator(__DIR__.'/../Resources/config')); |
||
| 18 | $loader->load('services.yml'); |
||
| 19 | } |
||
| 20 | |||
| 21 | /** |
||
| 22 | * {@inheritdoc} |
||
| 23 | */ |
||
| 24 | public function getNamespace() |
||
| 25 | { |
||
| 26 | } |
||
| 27 | |||
| 28 | /** |
||
| 29 | * {@inheritdoc} |
||
| 30 | */ |
||
| 31 | public function getXsdValidationBasePath() |
||
| 32 | { |
||
| 33 | } |
||
| 34 | |||
| 35 | /** |
||
| 36 | * {@inheritdoc} |
||
| 37 | */ |
||
| 38 | public function getAlias() |
||
| 39 | { |
||
| 40 | } |
||
| 41 | } |
||
| 42 |