diff --git a/src/Command/TestCommand.php b/src/Command/TestCommand.php deleted file mode 100644 index ca239e2..0000000 --- a/src/Command/TestCommand.php +++ /dev/null @@ -1,43 +0,0 @@ -userRepositoryQuery = $userRepositoryQuery; - } - - protected function configure() - { - $this - ->setDescription(self::$defaultDescription) - ->addArgument('arg1', InputArgument::OPTIONAL, 'Argument description') - ->addOption('option1', null, InputOption::VALUE_NONE, 'Option description') - ; - } - - protected function execute(InputInterface $input, OutputInterface $output): int - { - $query = $this->userRepositoryQuery->create(); - - return Command::SUCCESS; - } -}