Files
versioning-bundle/ShivasVersioningBundle.php
2017-02-05 19:58:12 +01:00

17 lines
446 B
PHP

<?php
namespace Shivas\VersioningBundle;
use Shivas\VersioningBundle\DependencyInjection\Compiler\ProviderCompilerPass;
use Symfony\Component\DependencyInjection\ContainerBuilder;
use Symfony\Component\HttpKernel\Bundle\Bundle;
class ShivasVersioningBundle extends Bundle
{
public function build(ContainerBuilder $container)
{
parent::build($container);
$container->addCompilerPass(new ProviderCompilerPass());
}
}