lib/Knp/Rad/UrlGenerationBundle/UrlGenerationBundle.php line 8

Open in your IDE?
  1. <?php
  2. namespace Knp\Rad\UrlGenerationBundle;
  3. use Knp\Rad\UrlGenerationBundle\DependencyInjection\UrlGenerationExtension;
  4. use Symfony\Component\HttpKernel\Bundle\Bundle;
  5. class UrlGenerationBundle extends Bundle
  6. {
  7.     /**
  8.      * {@inheritdoc}
  9.      */
  10.     public function getContainerExtension()
  11.     {
  12.         return new UrlGenerationExtension();
  13.     }
  14. }