diff --git a/src/DependencyInjection/CompilerPass/MakeCommandRegistrationPass.php b/src/DependencyInjection/CompilerPass/MakeCommandRegistrationPass.php index 136a3a262..2823b060f 100644 --- a/src/DependencyInjection/CompilerPass/MakeCommandRegistrationPass.php +++ b/src/DependencyInjection/CompilerPass/MakeCommandRegistrationPass.php @@ -45,7 +45,7 @@ public function process(ContainerBuilder $container): void $tagAttributes = ['command' => $class::getCommandName()]; if (!method_exists($class, 'getCommandDescription')) { - // no-op + // no-op } elseif (class_exists(LazyCommand::class)) { $tagAttributes['description'] = $class::getCommandDescription(); } else {