| 1 | <?php |
||
| 18 | final class AliasingCompilerPass implements CompilerPassInterface |
||
| 19 | { |
||
| 20 | /** |
||
| 21 | * {@inheritdoc} |
||
| 22 | */ |
||
| 23 | public function process(ContainerBuilder $containerBuilder) |
||
| 24 | { |
||
| 25 | $containerBuilder->setAlias('controller_resolver', new Alias('some_alias.controller_resolver', false)); |
||
| 26 | } |
||
| 27 | } |
||
| 28 |