From b843ff8e9dc7f1e57833294d27d53e08ca8695c5 Mon Sep 17 00:00:00 2001 From: Tomas Votruba Date: Mon, 19 Jun 2023 11:54:21 +0200 Subject: [PATCH] remove deprecated init command --- src/Console/Command/InitCommand.php | 34 ----------------------------- 1 file changed, 34 deletions(-) delete mode 100644 src/Console/Command/InitCommand.php diff --git a/src/Console/Command/InitCommand.php b/src/Console/Command/InitCommand.php deleted file mode 100644 index a37118cbf7..0000000000 --- a/src/Console/Command/InitCommand.php +++ /dev/null @@ -1,34 +0,0 @@ -setName('init'); - $this->setDescription('[DEPRECATED] Generate ecs.php configuration file'); - } - - protected function execute(InputInterface $input, OutputInterface $output): int - { - $this->configInitializer->createConfig(getcwd()); - return self::SUCCESS; - } -}