<?phpnamespace 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()); }}