vendor/sonata-project/easy-extends-bundle/src/SonataEasyExtendsBundle.php line 18

Open in your IDE?
  1. <?php
  2. /*
  3.  * This file is part of the Sonata Project package.
  4.  *
  5.  * (c) Thomas Rabaix <thomas.rabaix@sonata-project.org>
  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 Sonata\EasyExtendsBundle;
  11. use Sonata\EasyExtendsBundle\DependencyInjection\Compiler\AddMapperInformationCompilerPass;
  12. use Symfony\Component\DependencyInjection\ContainerBuilder;
  13. use Symfony\Component\HttpKernel\Bundle\Bundle;
  14. class SonataEasyExtendsBundle extends Bundle
  15. {
  16.     /**
  17.      * Builds the bundle.
  18.      *
  19.      * It is only ever called once when the cache is empty.
  20.      *
  21.      * This method can be overridden to register compilation passes,
  22.      * other extensions, ...
  23.      *
  24.      * @param ContainerBuilder $container A ContainerBuilder instance
  25.      */
  26.     public function build(ContainerBuilder $container)
  27.     {
  28.         $container->addCompilerPass(new AddMapperInformationCompilerPass());
  29.     }
  30. }