We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2d95fc5 commit 4f10fc4Copy full SHA for 4f10fc4
1 file changed
src/Command/ErrorFormatter/TableErrorFormatter.php
@@ -191,9 +191,9 @@ public function formatErrors(
191
if ($this->level > 0) {
192
$note[] = '- Consider lowering the PHPStan level';
193
}
194
- $note[] = '- Consider using PHPStan Pro for more comfortable error browsing';
195
$note[] = '- Pass PHPSTAN_TABLE_ERROR_FORMATTER_FORCE_SHOW_ALL_ERRORS=1 environment variable to show all errors';
196
- $note[] = '- Learn more: https://phpstan.com';
+ $note[] = '- Consider using PHPStan Pro for more comfortable error browsing';
+ $note[] = ' Learn more: https://phpstan.com';
197
$style->note(implode("\n", $note));
198
} else {
199
$finalMessage = sprintf($analysisResult->getTotalErrorsCount() === 1 ? 'Found %d error' : 'Found %d errors', $analysisResult->getTotalErrorsCount());
0 commit comments