chill-bundles/src/Bundle/ChillThirdParty/ChillThirdPartyBundle.php

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