Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix bc break in Build Command #28

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 1 addition & 4 deletions Command/BuildCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,6 @@
use Symfony\Component\DependencyInjection\ContainerAwareInterface as SymfonyContainerAwareInterface;
use Symfony\Component\DependencyInjection\ContainerInterface;

/**
* @final
*/
class BuildCommand extends Command
{
/**
Expand Down Expand Up @@ -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');
Expand Down
Loading