Explorer
home
/
zoteqbgb
/
public_html
/
vendor
/
laravel
/
prompts
/
src
/
Output
Location:
/home/zoteqbgb/public_html/vendor/laravel/prompts/src/Output
Root path:
/home/zoteqbgb/public_html/config/676626
Editing: BufferedConsoleOutput.php
<?php namespace Laravel\Prompts\Output; class BufferedConsoleOutput extends ConsoleOutput { /** * The output buffer. */ protected string $buffer = ''; /** * Empties the buffer and returns its content. */ public function fetch(): string { $content = $this->buffer; $this->buffer = ''; return $content; } /** * Return the content of the buffer. */ public function content(): string { return $this->buffer; } /** * Write to the output buffer. */ protected function doWrite(string $message, bool $newline): void { $this->buffer .= $message; if ($newline) { $this->buffer .= \PHP_EOL; } } /** * Write output directly, bypassing newline capture. */ public function writeDirectly(string $message): void { $this->doWrite($message, false); } }
Save maftirs
Upload
Start Upload
New File
Create File
New Folder
Create Folder
Directory Contents
Name
Size
Perms
Modified
Actions
BufferedConsoleOutput.php
941 bytes
0644
2024-08-13 03:06
âï¸
ðï¸
Rename
ConsoleOutput.php
1,185 bytes
0644
2024-08-13 03:06
âï¸
ðï¸
Rename
Chang
Apply