vendor/massive/build-bundle/MassiveBuildBundle.php line 21

Open in your IDE?
  1. <?php
  2. /*
  3.  * This file is part of the MassiveBuildBundle
  4.  *
  5.  * (c) MASSIVE ART WebServices GmbH
  6.  *
  7.  * This source file is subject to the MIT license that is bundled
  8.  * with this source code in the file LICENSE.
  9.  */
  10. namespace Massive\Bundle\BuildBundle;
  11. use Massive\Bundle\BuildBundle\DependencyInjection\Compiler\BuilderPass;
  12. use Symfony\Component\DependencyInjection\ContainerBuilder;
  13. use Symfony\Component\HttpKernel\Bundle\Bundle;
  14. /**
  15.  * @final
  16.  */
  17. class MassiveBuildBundle extends Bundle
  18. {
  19.     public function build(ContainerBuilder $container): void
  20.     {
  21.         $container->addCompilerPass(new BuilderPass());
  22.     }
  23. }