vendor/symfony/ux-turbo/src/TurboBundle.php line 23
<?php
/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <fabien@symfony.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Symfony\UX\Turbo;
use Symfony\Component\DependencyInjection\Compiler\CompilerPassInterface;
use Symfony\Component\DependencyInjection\Compiler\PassConfig;
use Symfony\Component\DependencyInjection\ContainerBuilder;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpKernel\Bundle\Bundle;
/**
* @author Kévin Dunglas <kevin@dunglas.fr>
*/
final class TurboBundle extends Bundle
{
public const STREAM_FORMAT = 'turbo_stream';
public const STREAM_MEDIA_TYPE = 'text/vnd.turbo-stream.html';
public function boot(): void
{
(new Request())->setFormat(self::STREAM_FORMAT, self::STREAM_MEDIA_TYPE);
}
public function build(ContainerBuilder $container): void
{
parent::build($container);
$container->addCompilerPass(new class() implements CompilerPassInterface {
public function process(ContainerBuilder $container): void
{
if (!$container->hasDefinition('turbo.broadcaster.imux')) {
return;
}
if (!$container->getDefinition('turbo.broadcaster.imux')->getArgument(0)->getValues()) {
$container->removeDefinition('turbo.doctrine.event_listener');
}
}
}, PassConfig::TYPE_BEFORE_REMOVING);
}
public function getPath(): string
{
return \dirname(__DIR__);
}
}