芝麻web文件管理V1.00
编辑当前文件:/home/pulsehostuk9/www/portal.pulsehost.co.uk/vendor/league/plates/src/Template/Directory.php
set($path); } /** * Set path to templates directory. * @param string|null $path Pass null to disable the default directory. * @return Directory */ public function set($path) { if (!is_null($path) and !is_dir($path)) { throw new LogicException( 'The specified path "' . $path . '" does not exist.' ); } $this->path = $path; return $this; } /** * Get path to templates directory. * @return string */ public function get() { return $this->path; } }