We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1b84d93 commit ea11dfaCopy full SHA for ea11dfa
src/Cli/IO.php
@@ -210,6 +210,12 @@ private static function safeWrite(string|array $messages): void
210
211
self::$spinner?->clear();
212
213
+ // For some reason Symfony's Output truncates long strings, this happens with `bref command`
214
+ // when the resulting output is very long. To avoid this, we split the string into multiple lines.
215
+ if (is_string($messages)) {
216
+ $messages = explode(PHP_EOL, $messages);
217
+ }
218
+
219
self::$output->writeln($messages);
220
221
// Render the spinner again
0 commit comments