Skip to content

Commit 9ab9647

Browse files
committed
Fix default level message
1 parent 928744d commit 9ab9647

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
@@ -64,7 +64,7 @@ public function formatErrors(
6464
$output->writeLineFormatted('💡 Tip of the Day:');
6565
$output->writeLineFormatted(sprintf(
6666
"PHPStan is performing only the most basic checks.\nYou can pass a higher rule level through the <fg=cyan>--%s</> option\n(the default and current level is %d) to analyse code more thoroughly.",
67-
(int) AnalyseCommand::OPTION_LEVEL,
67+
AnalyseCommand::OPTION_LEVEL,
6868
(int) AnalyseCommand::DEFAULT_LEVEL,
6969
));
7070
$output->writeLineFormatted('');

0 commit comments

Comments
 (0)