123456789101112131415161718192021222324252627282930313233343536373839 |
- <?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));
- }
- }
|