vendor/abap/kendoui-admin-theme-bundle/src/AbapKendoUiAdminThemeBundle.php line 12

Open in your IDE?
  1. <?php
  2. declare(strict_types=1);
  3. namespace Abap\KendoUiAdminThemeBundle;
  4. use Abap\KendoUiAdminThemeBundle\DependencyInjection\Compiler\CrudListQueryBuilderModifierCompilerPass;
  5. use Abap\KendoUiAdminThemeBundle\DependencyInjection\Compiler\LinkAvailabilityCheckerCompilerPass;
  6. use Symfony\Component\DependencyInjection\ContainerBuilder;
  7. use Symfony\Component\HttpKernel\Bundle\Bundle;
  8. final class AbapKendoUiAdminThemeBundle extends Bundle
  9. {
  10.     public function build(ContainerBuilder $container): void
  11.     {
  12.         parent::build($container);
  13.         $container->addCompilerPass(new LinkAvailabilityCheckerCompilerPass());
  14.         $container->addCompilerPass(new CrudListQueryBuilderModifierCompilerPass());
  15.     }
  16. }