芝麻web文件管理V1.00
编辑当前文件:/home/qrafawbu/reginaeigbe.com/folder/admin/tmp/vendor/laravel/prompts/src/Output/ConsoleOutput.php
newLinesWritten; } /** * Write the output and capture the number of trailing new lines. */ protected function doWrite(string $message, bool $newline): void { parent::doWrite($message, $newline); if ($newline) { $message .= \PHP_EOL; } $trailingNewLines = strlen($message) - strlen(rtrim($message, \PHP_EOL)); if (trim($message) === '') { $this->newLinesWritten += $trailingNewLines; } else { $this->newLinesWritten = $trailingNewLines; } } /** * Write output directly, bypassing newline capture. */ public function writeDirectly(string $message): void { parent::doWrite($message, false); } }