chill-bundles/src/Bundle/ChillThirdPartyBundle/ChillThirdPartyBundle.php
2021-03-18 13:37:13 +01: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());
}
}