vendor/massive/build-bundle/MassiveBuildBundle.php line 18
<?php
/*
* This file is part of the MassiveBuildBundle
*
* (c) MASSIVE ART WebServices GmbH
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
*/
namespace Massive\Bundle\BuildBundle;
use Massive\Bundle\BuildBundle\DependencyInjection\Compiler\BuilderPass;
use Symfony\Component\DependencyInjection\ContainerBuilder;
use Symfony\Component\HttpKernel\Bundle\Bundle;
class MassiveBuildBundle extends Bundle
{
public function build(ContainerBuilder $container)
{
parent::build($container);
$container->addCompilerPass(new BuilderPass());
}
}