<?php
declare(strict_types=1);
namespace Abap\KendoUiAdminThemeBundle;
use Abap\KendoUiAdminThemeBundle\DependencyInjection\Compiler\CrudListQueryBuilderModifierCompilerPass;
use Abap\KendoUiAdminThemeBundle\DependencyInjection\Compiler\LinkAvailabilityCheckerCompilerPass;
use Symfony\Component\DependencyInjection\ContainerBuilder;
use Symfony\Component\HttpKernel\Bundle\Bundle;
final class AbapKendoUiAdminThemeBundle extends Bundle
{
public function build(ContainerBuilder $container): void
{
parent::build($container);
$container->addCompilerPass(new LinkAvailabilityCheckerCompilerPass());
$container->addCompilerPass(new CrudListQueryBuilderModifierCompilerPass());
}
}