| 1 | <?php |
||
| 10 | final class AliasingBundle extends Bundle |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * {@inheritdoc} |
||
| 14 | */ |
||
| 15 | public function build(ContainerBuilder $containerBuilder) |
||
| 16 | { |
||
| 17 | $containerBuilder->addCompilerPass(new AliasingCompilerPass()); |
||
| 18 | } |
||
| 19 | |||
| 20 | /** |
||
| 21 | * {@inheritdoc} |
||
| 22 | */ |
||
| 23 | public function getContainerExtension() |
||
| 24 | { |
||
| 25 | return new AliasingExtension(); |
||
| 26 | } |
||
| 27 | } |
||
| 28 |