Skip to content

Commit

Permalink
Merge branch '3.4' into 4.0
Browse files Browse the repository at this point in the history
* 3.4:
  Add color support for Hyper terminal .
  [HttpFoundation] Fix tests: new message for status 425
  [Doctrine Bridge] Fixed usage of wrong variable when tagged subscriber is invalid
  [PropertyInfo] added handling of nullable types in PhpDoc
  [HttpKernel] Make AbstractTestSessionListener compatible with CookieClearingLogoutHandler
  [Cache] provider does not respect option maxIdLength with versioning enabled
  • Loading branch information
nicolas-grekas committed Jul 3, 2018
2 parents add519e + 1cdaa75 commit e3bd95b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion DeprecationErrorHandler.php
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,8 @@ private static function hasColorSupport()
&& sapi_windows_vt100_support(STDOUT))
|| false !== getenv('ANSICON')
|| 'ON' === getenv('ConEmuANSI')
|| 'xterm' === getenv('TERM');
|| 'xterm' === getenv('TERM')
|| 'Hyper' === getenv('TERM_PROGRAM');
}

if (function_exists('stream_isatty')) {
Expand Down

0 comments on commit e3bd95b

Please sign in to comment.