12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <?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\ContainerBuilder;
- use Symfony\Component\DependencyInjection\Compiler\CompilerPassInterface;
- /**
- * 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 = array();
- foreach ($container->findTaggedServiceIds('twig.runtime') as $id => $attributes) {
- $def = $container->getDefinition($id);
- if (!$def->isPublic()) {
- throw new InvalidArgumentException(sprintf('The service "%s" must be public as it can be lazy-loaded.', $id));
- }
- if ($def->isAbstract()) {
- throw new InvalidArgumentException(sprintf('The service "%s" must not be abstract as it can be lazy-loaded.', $id));
- }
- $mapping[$def->getClass()] = $id;
- }
- $definition->replaceArgument(1, $mapping);
- }
- }
|