Skip to content

Commit e0a521e

Browse files
[Console][PhpUnitBridge][VarDumper] Fix NO_COLOR empty value handling
1 parent af8868a commit e0a521e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Dumper/CliDumper.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -606,7 +606,7 @@ private function hasColorSupport($stream): bool
606606
}
607607

608608
// Follow https://no-color.org/
609-
if (isset($_SERVER['NO_COLOR']) || false !== getenv('NO_COLOR')) {
609+
if ('' !== ($_SERVER['NO_COLOR'] ?? getenv('NO_COLOR') ?: '')) {
610610
return false;
611611
}
612612

0 commit comments

Comments
 (0)