for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* This file is part of the Mediapart LaPresseLibre Bundle.
*
* CC BY-NC-SA <https://github.com/mediapart/lapresselibre-bundle>
* For the full license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Mediapart\Bundle\LaPresseLibreBundle;
use Symfony\Component\HttpKernel\Bundle\Bundle;
use Symfony\Component\DependencyInjection\ContainerBuilder;
use Mediapart\Bundle\LaPresseLibreBundle\DependencyInjection\OperationCompilerPass;
class MediapartLaPresseLibreBundle extends Bundle
{
* @param ContainerBuilder $container
public function build(ContainerBuilder $container)
parent::build($container);
$container->addCompilerPass(new OperationCompilerPass());
}