芝麻web文件管理V1.00
编辑当前文件:/home/pulsehostuk9/www/status.pulsehost.co.uk/vendor/scssphp/scssphp/src/Logger/StreamLogger.php
stream = $stream; $this->closeOnDestruct = $closeOnDestruct; } /** * @internal */ public function __destruct() { if ($this->closeOnDestruct) { fclose($this->stream); } } /** * @inheritDoc */ public function warn($message, $deprecation = false) { $prefix = ($deprecation ? 'DEPRECATION ' : '') . 'WARNING: '; fwrite($this->stream, $prefix . $message . "\n\n"); } /** * @inheritDoc */ public function debug($message) { fwrite($this->stream, $message . "\n"); } }