From 98f5055a5097c18ff14e9fede6007ca0ba764349 Mon Sep 17 00:00:00 2001 From: Jesse Rushlow Date: Wed, 20 Jul 2022 17:07:12 -0400 Subject: [PATCH] [ci] fix failing php-cs-fixer test --- .../CompilerPass/MakeCommandRegistrationPass.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 {