芝麻web文件管理V1.00
编辑当前文件:/home/pulsehostuk9/public_html/invoicer.pulsehost.co.uk/vendor/invoiceshelf/GeneratorPath.php
path = $config['path']; $this->generate = $config['generate']; $this->namespace = $config['namespace'] ?? $this->convertPathToNamespace($config['path']); return; } $this->path = $config; $this->generate = (bool) $config; $this->namespace = $config; } public function getPath() { return $this->path; } public function generate() : bool { return $this->generate; } public function getNamespace() { return $this->namespace; } private function convertPathToNamespace($path) { return str_replace('/', '\\', $path); } }