for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* This file is part of Fabrica.
*
* (c) Alexandre Salomé <[email protected]>
* (c) Julien DIDIER <[email protected]>
* This source file is subject to the GPL license that is bundled
* with this source code in the file LICENSE.
*/
namespace Fabrica\Bundle\DistributionBundle;
use Symfony\Component\DependencyInjection\ContainerBuilder;
use Symfony\Component\HttpKernel\Bundle\Bundle;
use Fabrica\Bundle\DistributionBundle\DependencyInjection\CompilerPass\AddStepToListPass;
class FabricaDistributionBundle extends Bundle
setContainer
{
public function build(ContainerBuilder $container)
parent::build($container);
$container->addCompilerPass(new AddStepToListPass());
}