diff --git a/src/Shell/AnnotationsShell.php b/src/Shell/AnnotationsShell.php index 444c9691..c4813718 100644 --- a/src/Shell/AnnotationsShell.php +++ b/src/Shell/AnnotationsShell.php @@ -846,7 +846,7 @@ protected function getPaths(?string $type = null): array { * @return array */ protected function getPlugins(string $plugin): array { - if (strpos($plugin, '*') === false) { + if ($plugin !== 'all' && strpos($plugin, '*') === false) { return [Plugin::path($plugin) => $plugin]; }