login consent app sql
This commit is contained in:
39
vendor/symfony/twig-bundle/DependencyInjection/Compiler/RuntimeLoaderPass.php
vendored
Normal file
39
vendor/symfony/twig-bundle/DependencyInjection/Compiler/RuntimeLoaderPass.php
vendored
Normal file
@ -0,0 +1,39 @@
|
||||
<?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\Bundle\TwigBundle\DependencyInjection\Compiler;
|
||||
|
||||
use Symfony\Component\DependencyInjection\Compiler\CompilerPassInterface;
|
||||
use Symfony\Component\DependencyInjection\Compiler\ServiceLocatorTagPass;
|
||||
use Symfony\Component\DependencyInjection\ContainerBuilder;
|
||||
use Symfony\Component\DependencyInjection\Reference;
|
||||
|
||||
/**
|
||||
* Registers Twig runtime services.
|
||||
*/
|
||||
class RuntimeLoaderPass implements CompilerPassInterface
|
||||
{
|
||||
public function process(ContainerBuilder $container)
|
||||
{
|
||||
if (!$container->hasDefinition('twig.runtime_loader')) {
|
||||
return;
|
||||
}
|
||||
|
||||
$definition = $container->getDefinition('twig.runtime_loader');
|
||||
$mapping = [];
|
||||
foreach ($container->findTaggedServiceIds('twig.runtime', true) as $id => $attributes) {
|
||||
$def = $container->getDefinition($id);
|
||||
$mapping[$def->getClass()] = new Reference($id);
|
||||
}
|
||||
|
||||
$definition->replaceArgument(0, ServiceLocatorTagPass::register($container, $mapping));
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user