芝麻web文件管理V1.00
编辑当前文件:/home/mgatv524/public_html/midiatech/vendor/twig/twig/src/RuntimeLoader/FactoryRuntimeLoader.php
*/ class FactoryRuntimeLoader implements RuntimeLoaderInterface { private $map; /** * @param array $map An array where keys are class names and values factory callables */ public function __construct($map = []) { $this->map = $map; } public function load($class) { if (isset($this->map[$class])) { $runtimeFactory = $this->map[$class]; return $runtimeFactory(); } } } class_alias('Twig\RuntimeLoader\FactoryRuntimeLoader', 'Twig_FactoryRuntimeLoader');