vendor/sulu/sulu/src/Sulu/Bundle/RouteBundle/SuluRouteBundle.php line 28

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\RouteBundle;
  11. use Sulu\Bundle\PersistenceBundle\PersistenceBundleTrait;
  12. use Sulu\Bundle\RouteBundle\DependencyInjection\RouteGeneratorCompilerPass;
  13. use Sulu\Bundle\RouteBundle\Model\RouteInterface;
  14. use Sulu\Component\Route\RouteDefaultOptionsCompilerPass;
  15. use Sulu\Component\Symfony\CompilerPass\TaggedServiceCollectorCompilerPass;
  16. use Symfony\Component\DependencyInjection\Compiler\PassConfig;
  17. use Symfony\Component\DependencyInjection\ContainerBuilder;
  18. use Symfony\Component\HttpKernel\Bundle\Bundle;
  19. /**
  20. * Entry point of sulu-route-bundle.
  21. *
  22. * @final
  23. */
  24. class SuluRouteBundle extends Bundle
  25. {
  26. use PersistenceBundleTrait;
  27. public function build(ContainerBuilder $container): void
  28. {
  29. parent::build($container);
  30. $container->addCompilerPass(new RouteGeneratorCompilerPass(), PassConfig::TYPE_BEFORE_OPTIMIZATION, -1024);
  31. $container->addCompilerPass(
  32. new RouteDefaultOptionsCompilerPass('sulu_route.routing.provider', 5)
  33. );
  34. $container->addCompilerPass(
  35. new TaggedServiceCollectorCompilerPass('sulu_route.routing.defaults_provider', 'sulu_route.defaults_provider')
  36. );
  37. $this->buildPersistence(
  38. [
  39. RouteInterface::class => 'sulu.model.route.class',
  40. ],
  41. $container
  42. );
  43. }
  44. }