We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 954bdc3 commit 2d95fc5Copy full SHA for 2d95fc5
src/Command/ErrorFormatter/TableErrorFormatter.php
@@ -90,7 +90,8 @@ public function formatErrors(
90
$fileErrors[$fileSpecificError->getFile()][] = $fileSpecificError;
91
}
92
93
- if (getenv('PHPSTAN_TABLE_ERROR_FORMATTER_FORCE_SHOW_ALL_ERRORS') === '1') {
+ $forceShowAll = getenv('PHPSTAN_TABLE_ERROR_FORMATTER_FORCE_SHOW_ALL_ERRORS');
94
+ if ($forceShowAll === false || $forceShowAll === '0') {
95
$errorsBudget = self::ERRORS_LIMIT;
96
} else {
97
$errorsBudget = 0;
0 commit comments