<?php
namespace Rawafed\RoutingBundle;
use Symfony\Component\HttpKernel\Bundle\Bundle;
use Symfony\Component\DependencyInjection\ContainerBuilder;
use Rawafed\RoutingBundle\DependencyInjection\Compiler\RoutingCompilerPass;
class RawafedRoutingBundle extends Bundle
{
public function build(ContainerBuilder $container)
{
parent::build($container);
$container->addCompilerPass(new RoutingCompilerPass());
}
}