vendor/whatwedo/core-bundle/whatwedoCoreBundle.php line 12

Open in your IDE?
  1. <?php
  2. namespace whatwedo\CoreBundle;
  3. use Symfony\Component\DependencyInjection\ContainerBuilder;
  4. use Symfony\Component\HttpKernel\Bundle\Bundle;
  5. use whatwedo\CoreBundle\DependencyInjection\Compiler\FormatterPass;
  6. /**
  7.  * Class whatwedoCoreBundle.
  8.  */
  9. class whatwedoCoreBundle extends Bundle
  10. {
  11.     public function build(ContainerBuilder $container)
  12.     {
  13.         $container->addCompilerPass(new FormatterPass());
  14.     }
  15. }