mirror of
https://github.com/code-rhapsodie/versioning-bundle.git
synced 2026-03-24 06:42:18 +01:00
17 lines
446 B
PHP
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());
|
|
}
|
|
}
|