Skip to content

Commit c1a201d

Browse files
radimvaculikJanTvrdik
authored andcommitted
Fix: Undefined constant "Nextras\Migrations\Printers\STDOUT"
1 parent 6957593 commit c1a201d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Printers/Console.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -105,8 +105,8 @@ protected function colorize(string $s, ?string $color): string
105105
*/
106106
protected function detectColorSupport(): bool
107107
{
108-
return (function_exists('posix_isatty') && posix_isatty(STDOUT))
108+
return defined('STDOUT') && ((function_exists('posix_isatty') && posix_isatty(STDOUT))
109109
|| (function_exists('stream_isatty') && stream_isatty(STDOUT))
110-
|| (function_exists('sapi_windows_vt100_support') && sapi_windows_vt100_support(STDOUT));
110+
|| (function_exists('sapi_windows_vt100_support') && sapi_windows_vt100_support(STDOUT)));
111111
}
112112
}

0 commit comments

Comments
 (0)