vendor/ibexa/fieldtype-query/src/bundle/IbexaFieldTypeQueryBundle.php line 13

Open in your IDE?
  1. <?php
  2. /**
  3.  * @copyright Copyright (C) Ibexa AS. All rights reserved.
  4.  * @license For full copyright and license information view LICENSE file distributed with this source code.
  5.  */
  6. namespace Ibexa\Bundle\FieldTypeQuery;
  7. use Ibexa\Bundle\FieldTypeQuery\DependencyInjection\Compiler;
  8. use Symfony\Component\DependencyInjection\ContainerBuilder;
  9. use Symfony\Component\HttpKernel\Bundle\Bundle;
  10. final class IbexaFieldTypeQueryBundle extends Bundle
  11. {
  12.     public function build(ContainerBuilder $container)
  13.     {
  14.         $container->addCompilerPass(new Compiler\QueryTypesListPass());
  15.         $container->addCompilerPass(new Compiler\ConfigurableFieldDefinitionMapperPass());
  16.         $container->addCompilerPass(new Compiler\FieldDefinitionIdentifierViewMatcherPass());
  17.     }
  18. }
  19. class_alias(IbexaFieldTypeQueryBundle::class, 'EzSystems\EzPlatformQueryFieldType\Symfony\EzSystemsEzPlatformQueryFieldTypeBundle');