vendor/cosavostra/localise-bundle/CosaVostraLocaliseBundle.php line 19

Open in your IDE?
  1. <?php
  2. /**
  3.  * This file is part of the CosaVostra, Localise.biz bundle.
  4.  *
  5.  * (c) Mohamed Radhi GUENNICHI <rg@mate.tn> <+216 50 711 816>
  6.  *
  7.  * For the full copyright and license information, please view the LICENSE
  8.  * file that was distributed with this source code.
  9.  */
  10. declare(strict_types=1);
  11. namespace CosaVostra\LocaliseBundle;
  12. use CosaVostra\LocaliseBundle\DependencyInjection\Compiler\ExporterRegistryPass;
  13. use Symfony\Component\DependencyInjection\ContainerBuilder;
  14. use Symfony\Component\HttpKernel\Bundle\Bundle;
  15. class CosaVostraLocaliseBundle extends Bundle
  16. {
  17.     public function build(ContainerBuilder $container)
  18.     {
  19.         $container->addCompilerPass(new ExporterRegistryPass());
  20.     }
  21. }