<?php
/**
* @copyright Copyright (C) Ibexa AS. All rights reserved.
* @license For full copyright and license information view LICENSE file distributed with this source code.
*/
namespace Ibexa\Bundle\FieldTypeQuery;
use Ibexa\Bundle\FieldTypeQuery\DependencyInjection\Compiler;
use Symfony\Component\DependencyInjection\ContainerBuilder;
use Symfony\Component\HttpKernel\Bundle\Bundle;
final class IbexaFieldTypeQueryBundle extends Bundle
{
public function build(ContainerBuilder $container)
{
$container->addCompilerPass(new Compiler\QueryTypesListPass());
$container->addCompilerPass(new Compiler\ConfigurableFieldDefinitionMapperPass());
$container->addCompilerPass(new Compiler\FieldDefinitionIdentifierViewMatcherPass());
}
}
class_alias(IbexaFieldTypeQueryBundle::class, 'EzSystems\EzPlatformQueryFieldType\Symfony\EzSystemsEzPlatformQueryFieldTypeBundle');