vendor/api-platform/core/src/Symfony/Bundle/ApiPlatformBundle.php line 37

Open in your IDE?
  1. <?php
  2. /*
  3. * This file is part of the API Platform project.
  4. *
  5. * (c) Kévin Dunglas <dunglas@gmail.com>
  6. *
  7. * For the full copyright and license information, please view the LICENSE
  8. * file that was distributed with this source code.
  9. */
  10. declare(strict_types=1);
  11. namespace ApiPlatform\Symfony\Bundle;
  12. use ApiPlatform\Symfony\Bundle\DependencyInjection\Compiler\AnnotationFilterPass;
  13. use ApiPlatform\Symfony\Bundle\DependencyInjection\Compiler\AuthenticatorManagerPass;
  14. use ApiPlatform\Symfony\Bundle\DependencyInjection\Compiler\DataProviderPass;
  15. use ApiPlatform\Symfony\Bundle\DependencyInjection\Compiler\DeprecateLegacyIriConverterPass;
  16. use ApiPlatform\Symfony\Bundle\DependencyInjection\Compiler\DeprecateMercurePublisherPass;
  17. use ApiPlatform\Symfony\Bundle\DependencyInjection\Compiler\ElasticsearchClientPass;
  18. use ApiPlatform\Symfony\Bundle\DependencyInjection\Compiler\FilterPass;
  19. use ApiPlatform\Symfony\Bundle\DependencyInjection\Compiler\GraphQlMutationResolverPass;
  20. use ApiPlatform\Symfony\Bundle\DependencyInjection\Compiler\GraphQlQueryResolverPass;
  21. use ApiPlatform\Symfony\Bundle\DependencyInjection\Compiler\GraphQlTypePass;
  22. use ApiPlatform\Symfony\Bundle\DependencyInjection\Compiler\MetadataAwareNameConverterPass;
  23. use ApiPlatform\Symfony\Bundle\DependencyInjection\Compiler\TestClientPass;
  24. use Symfony\Component\DependencyInjection\Compiler\PassConfig;
  25. use Symfony\Component\DependencyInjection\ContainerBuilder;
  26. use Symfony\Component\HttpKernel\Bundle\Bundle;
  27. /**
  28. * The Symfony bundle.
  29. *
  30. * @author Kévin Dunglas <dunglas@gmail.com>
  31. */
  32. final class ApiPlatformBundle extends Bundle
  33. {
  34. public function build(ContainerBuilder $container)
  35. {
  36. parent::build($container);
  37. $container->addCompilerPass(new DataProviderPass());
  38. // Run the compiler pass before the {@see ResolveInstanceofConditionalsPass} to allow autoconfiguration of generated filter definitions.
  39. $container->addCompilerPass(new AnnotationFilterPass(), PassConfig::TYPE_BEFORE_OPTIMIZATION, 101);
  40. $container->addCompilerPass(new FilterPass());
  41. $container->addCompilerPass(new ElasticsearchClientPass());
  42. $container->addCompilerPass(new GraphQlTypePass());
  43. $container->addCompilerPass(new GraphQlQueryResolverPass());
  44. $container->addCompilerPass(new GraphQlMutationResolverPass());
  45. $container->addCompilerPass(new DeprecateMercurePublisherPass());
  46. $container->addCompilerPass(new MetadataAwareNameConverterPass());
  47. $container->addCompilerPass(new TestClientPass());
  48. $container->addCompilerPass(new AuthenticatorManagerPass());
  49. $container->addCompilerPass(new DeprecateLegacyIriConverterPass());
  50. }
  51. }
  52. class_alias(ApiPlatformBundle::class, \ApiPlatform\Core\Bridge\Symfony\Bundle\ApiPlatformBundle::class);