From be9c75b1ea05659459c3ea4a124163cd3dba5d17 Mon Sep 17 00:00:00 2001 From: Tomas Votruba Date: Fri, 21 Dec 2018 09:47:46 +0100 Subject: [PATCH] remove default command, broken --- src/Console/Application.php | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/Console/Application.php b/src/Console/Application.php index 5c78a601855..ebba50e8cf8 100644 --- a/src/Console/Application.php +++ b/src/Console/Application.php @@ -4,7 +4,6 @@ namespace Rector\Console; use Jean85\PrettyVersions; use Rector\Console\Command\GenerateRectorOverviewCommand; -use Rector\Console\Command\ProcessCommand; use Rector\ContributorTools\Command\CreateRectorCommand; use Symfony\Component\Console\Application as SymfonyApplication; use Symfony\Component\Console\Command\Command; @@ -32,8 +31,6 @@ final class Application extends SymfonyApplication $commands = $this->filterCommandsByScope($commands); $this->addCommands($commands); - - $this->setDefaultCommand(CommandNaming::classToName(ProcessCommand::class)); } public function doRun(InputInterface $input, OutputInterface $output): int