From c09c7f88e86db0b9fbf04f9ffdda3ac49d2639cf Mon Sep 17 00:00:00 2001 From: mscherer Date: Tue, 26 Nov 2024 10:00:18 +0100 Subject: [PATCH] Fix plugin option all. --- src/Shell/AnnotationsShell.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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]; }