Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 9c09e16

Browse files
committed
refactor: hyper check
1 parent 8d06a8a commit 9c09e16

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

src/Symfony/Component/Console/Output/StreamOutput.php

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -98,10 +98,6 @@ protected function hasColorSupport()
9898
return false;
9999
}
100100

101-
if ('Hyper' === getenv('TERM_PROGRAM')) {
102-
return true;
103-
}
104-
105101
if (\DIRECTORY_SEPARATOR === '\\') {
106102
return (\function_exists('sapi_windows_vt100_support')
107103
&& @sapi_windows_vt100_support($this->stream))
@@ -110,6 +106,7 @@ protected function hasColorSupport()
110106
|| 'xterm' === getenv('TERM');
111107
}
112108

113-
return stream_isatty($this->stream);
109+
return 'Hyper' === getenv('TERM_PROGRAM')
110+
|| stream_isatty($this->stream);
114111
}
115112
}

0 commit comments

Comments
 (0)