config = \config('view'); return $this; } public function cache($status) { return true; } public function fetch($file, $params, $cache) { $baseViewDir = rtrim($this->config['path'], '/') . '/'; $loader = new FilesystemLoader($baseViewDir); $loader->addPath($baseViewDir, 'base'); $template = new Environment($loader, [ 'cache' => rtrim($this->config['cache_path'], '/') . '/', 'auto_reload' => true, 'debug' => DEBUG ]); $templateFile = '@base/' . $file . '.' . ltrim($this->config['ext'], '.'); return $template->render($templateFile, $params); } }