vendor/symfony/ux-live-component/src/LiveComponentBundle.php line 25

Open in your IDE?
  1. <?php
  2. /*
  3.  * This file is part of the Symfony package.
  4.  *
  5.  * (c) Fabien Potencier <fabien@symfony.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. namespace Symfony\UX\LiveComponent;
  11. use Symfony\Component\DependencyInjection\Compiler\PassConfig;
  12. use Symfony\Component\DependencyInjection\ContainerBuilder;
  13. use Symfony\Component\HttpKernel\Bundle\Bundle;
  14. use Symfony\UX\LiveComponent\DependencyInjection\Compiler\ComponentDefaultActionPass;
  15. use Symfony\UX\LiveComponent\DependencyInjection\Compiler\OptionalDependencyPass;
  16. /**
  17.  * @author Kevin Bond <kevinbond@gmail.com>
  18.  *
  19.  * @experimental
  20.  */
  21. final class LiveComponentBundle extends Bundle
  22. {
  23.     public function build(ContainerBuilder $container): void
  24.     {
  25.         // must run before Symfony\Component\Serializer\DependencyInjection\SerializerPass
  26.         $container->addCompilerPass(new OptionalDependencyPass(), PassConfig::TYPE_BEFORE_OPTIMIZATION100);
  27.         $container->addCompilerPass(new ComponentDefaultActionPass());
  28.     }
  29. }