vendor/lolautruche/ez-core-extra-bundle/EzCoreExtraBundle.php line 18

Open in your IDE?
  1. <?php
  2. /*
  3. * This file is part of the EzCoreExtraBundle package.
  4. *
  5. * (c) Jérôme Vieilledent <jerome@vieilledent.fr>
  6. *
  7. * For the full copyright and license information, please view the LICENSE
  8. * file that was distributed with this source code.
  9. */
  10. namespace Lolautruche\EzCoreExtraBundle;
  11. use Lolautruche\EzCoreExtraBundle\DependencyInjection\Compiler\ParameterProviderPass;
  12. use Symfony\Component\DependencyInjection\ContainerBuilder;
  13. use Symfony\Component\HttpKernel\Bundle\Bundle;
  14. class EzCoreExtraBundle extends Bundle
  15. {
  16. public function build(ContainerBuilder $container)
  17. {
  18. parent::build($container);
  19. $container->addCompilerPass(new ParameterProviderPass());
  20. }
  21. }