vendor/sulu/sulu/src/Sulu/Bundle/TestBundle/SuluTestBundle.php line 21

Open in your IDE?
  1. <?php
  2. /*
  3. * This file is part of Sulu.
  4. *
  5. * (c) Sulu 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 Sulu\Bundle\TestBundle;
  11. use Sulu\Bundle\TestBundle\DependencyInjection\Compiler\ReplaceTestClientPass;
  12. use Symfony\Component\DependencyInjection\ContainerBuilder;
  13. use Symfony\Component\HttpKernel\Bundle\Bundle;
  14. /**
  15. * @final
  16. */
  17. class SuluTestBundle extends Bundle
  18. {
  19. /**
  20. * @internal
  21. */
  22. public function build(ContainerBuilder $container): void
  23. {
  24. parent::build($container);
  25. $container->addCompilerPass(new ReplaceTestClientPass());
  26. }
  27. /**
  28. * @internal
  29. */
  30. public static function getConfigDir(): string
  31. {
  32. return __DIR__ . '/Resources/app/config';
  33. }
  34. }