for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
/*
* This file is part of the Sonata Project package.
*
* (c) Thomas Rabaix <[email protected]>
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Sonata\EasyExtendsBundle;
use Sonata\EasyExtendsBundle\DependencyInjection\Compiler\AddMapperInformationCompilerPass;
use Symfony\Component\DependencyInjection\ContainerBuilder;
use Symfony\Component\HttpKernel\Bundle\Bundle;
class SonataEasyExtendsBundle extends Bundle
{
/**
* Builds the bundle.
* It is only ever called once when the cache is empty.
* This method can be overridden to register compilation passes,
* other extensions, ...
* @param ContainerBuilder $container A ContainerBuilder instance
public function build(ContainerBuilder $container): void
$container->addCompilerPass(new AddMapperInformationCompilerPass());
}