48 lines
1.5 KiB
PHP
48 lines
1.5 KiB
PHP
<?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;
|
|
use Symfony\Component\DependencyInjection\Exception\InvalidArgumentException;
|
|
|
|
/**
|
|
* 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);
|
|
}
|
|
}
|