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

Skip to content

Commit 9234171

Browse files
committed
fixed CS
1 parent a6c22f5 commit 9234171

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Symfony/Component/VarDumper/Dumper/CliDumper.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -513,7 +513,7 @@ private function hasColorSupport($stream)
513513
*/
514514
private function isWindowsTrueColor()
515515
{
516-
$result = strval(getenv('ANSICON_VER')) >= '183'
516+
$result = 183 <= getenv('ANSICON_VER')
517517
|| 'ON' === getenv('ConEmuANSI')
518518
|| 'xterm' === getenv('TERM');
519519

0 commit comments

Comments
 (0)