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 602ff3a commit c28ae0cCopy full SHA for c28ae0c
DeprecationErrorHandler.php
@@ -396,11 +396,11 @@ private static function hasColorSupport()
396
}
397
398
if (\function_exists('stream_isatty')) {
399
- return stream_isatty(\STDOUT);
+ return @stream_isatty(\STDOUT);
400
401
402
if (\function_exists('posix_isatty')) {
403
- return posix_isatty(\STDOUT);
+ return @posix_isatty(\STDOUT);
404
405
406
$stat = fstat(\STDOUT);
0 commit comments