/var/www/vhosts/ihelp.ro/httpdocs/vendor/twig/twig/src/RuntimeLoader
NameSizeModeActions
ContainerRuntimeLoader.php8750644editdlrm
FactoryRuntimeLoader.php8450644editdlrm
RuntimeLoaderInterface.php6830644editdlrm
Edit: /var/www/vhosts/ihelp.ro/httpdocs/vendor/twig/twig/src/RuntimeLoader/ContainerRuntimeLoader.php (875B)
* @author Robin Chalas */ class ContainerRuntimeLoader implements RuntimeLoaderInterface { private $container; public function __construct(ContainerInterface $container) { $this->container = $container; } public function load(string $class) { return $this->container->has($class) ? $this->container->get($class) : null; } }