vendor/rawafed/routing-bundle/RawafedRoutingBundle.php line 9

Open in your IDE?
  1. <?php
  2. namespace Rawafed\RoutingBundle;
  3. use Symfony\Component\HttpKernel\Bundle\Bundle;
  4. use Symfony\Component\DependencyInjection\ContainerBuilder;
  5. use Rawafed\RoutingBundle\DependencyInjection\Compiler\RoutingCompilerPass;
  6. class RawafedRoutingBundle extends Bundle
  7. {
  8.     public function build(ContainerBuilder $container)
  9.     {
  10.         parent::build($container);
  11.         $container->addCompilerPass(new RoutingCompilerPass());
  12.     }
  13. }