芝麻web文件管理V1.00
编辑当前文件:/home/pulsehostuk9/public_html/invoicer.pulsehost.co.uk/vendor/jasonmccreary/Stub.php
path = $path; $this->replaces = $replaces; } /** * Create new self instance. * * @param string $path * @param array $replaces * * @return self */ public static function create($path, array $replaces = []) { return new static($path, $replaces); } /** * Set stub path. * * @param string $path * * @return self */ public function setPath($path) { $this->path = $path; return $this; } /** * Get stub path. * * @return string */ public function getPath() { $path = static::getBasePath() . $this->path; return file_exists($path) ? $path : __DIR__ . '/../Commands/stubs' . $this->path; } /** * Set base path. * * @param string $path */ public static function setBasePath($path) { static::$basePath = $path; } /** * Get base path. * * @return string|null */ public static function getBasePath() { return static::$basePath; } /** * Get stub contents. * * @return mixed|string */ public function getContents() { $contents = file_get_contents($this->getPath()); foreach ($this->replaces as $search => $replace) { $contents = str_replace('$' . strtoupper($search) . '$', $replace, $contents); } return $contents; } /** * Get stub contents. * * @return string */ public function render() { return $this->getContents(); } /** * Save stub to specific path. * * @param string $path * @param string $filename * * @return bool */ public function saveTo($path, $filename) { return file_put_contents($path . '/' . $filename, $this->getContents()); } /** * Set replacements array. * * @param array $replaces * * @return $this */ public function replace(array $replaces = []) { $this->replaces = $replaces; return $this; } /** * Get replacements. * * @return array */ public function getReplaces() { return $this->replaces; } /** * Handle magic method __toString. * * @return string */ public function __toString() { return $this->render(); } }