chill-bundles/ChillThirdPartyBundle.php
2019-06-11 11:49:27 +02:00

17 lines
439 B
PHP

<?php
namespace Chill\ThirdPartyBundle;
use Symfony\Component\HttpKernel\Bundle\Bundle;
use Chill\ThirdPartyBundle\DependencyInjection\CompilerPass\ThirdPartyTypeCompilerPass;
class ChillThirdPartyBundle extends Bundle
{
public function build(\Symfony\Component\DependencyInjection\ContainerBuilder $container)
{
parent::build($container);
$container->addCompilerPass(new ThirdPartyTypeCompilerPass());
}
}