<?php
namespace Knp\Rad\UrlGenerationBundle;
use Knp\Rad\UrlGenerationBundle\DependencyInjection\UrlGenerationExtension;
use Symfony\Component\HttpKernel\Bundle\Bundle;
class UrlGenerationBundle extends Bundle
{
/**
* {@inheritdoc}
*/
public function getContainerExtension()
{
return new UrlGenerationExtension();
}
}