We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2cc6cda commit 1845ed2Copy full SHA for 1845ed2
src/Diagnose/PHPStanDiagnoseExtension.php
@@ -72,6 +72,9 @@ public function print(Output $output): void
72
$output->writeLineFormatted('');
73
74
$output->writeLineFormatted('<info>Discovered Composer project roots:</info>');
75
+ if (count($this->composerAutoloaderProjectPaths) === 0) {
76
+ $output->writeLineFormatted('None');
77
+ }
78
foreach ($this->composerAutoloaderProjectPaths as $composerAutoloaderProjectPath) {
79
$output->writeLineFormatted($composerAutoloaderProjectPath);
80
}
0 commit comments