Skip to content

Commit 97c4c87

Browse files
committed
cs
1 parent 6cbe8be commit 97c4c87

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Command/ErrorFormatter/TableErrorFormatter.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ public function formatErrors(
9191
}
9292

9393
$forceShowAll = getenv('PHPSTAN_TABLE_ERROR_FORMATTER_FORCE_SHOW_ALL_ERRORS');
94-
if (\in_array($forceShowAll, [false, '0'], true)) {
94+
if (in_array($forceShowAll, [false, '0'], true)) {
9595
$errorsBudget = self::ERRORS_LIMIT;
9696
} else {
9797
$errorsBudget = 0;

0 commit comments

Comments
 (0)