From 9b60be7657f32a474dd21f689b16331676ad3904 Mon Sep 17 00:00:00 2001 From: Alexander Schranz Date: Fri, 5 Apr 2024 13:32:34 +0200 Subject: [PATCH] Fix bc break in Build Command (#28) --- Command/BuildCommand.php | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/Command/BuildCommand.php b/Command/BuildCommand.php index e415636..2fdd500 100644 --- a/Command/BuildCommand.php +++ b/Command/BuildCommand.php @@ -27,9 +27,6 @@ use Symfony\Component\DependencyInjection\ContainerAwareInterface as SymfonyContainerAwareInterface; use Symfony\Component\DependencyInjection\ContainerInterface; -/** - * @final - */ class BuildCommand extends Command { /** @@ -65,7 +62,7 @@ public function __construct(BuildRegistry $buildRegistry, ContainerInterface $co $this->question = new QuestionHelper(); } - public function configure(): void + public function configure() { $this->setName('massive:build'); $this->setDescription('Execute build or build targets');