diff --git a/CLI/ProcessDDEXCommand.php b/CLI/ProcessDDEXCommand.php new file mode 100644 index 00000000..c64308a1 --- /dev/null +++ b/CLI/ProcessDDEXCommand.php @@ -0,0 +1,43 @@ +images = DatabaseConnection::i()->getContext()->table("photos"); + + parent::__construct(); + } + + protected function configure(): void + { + $this->setDescription("Process DDEX ERN packages for music uploading") + ->setHelp("This command allows you to process all DDEX ERN packages for music uploading"); + } + + protected function execute(InputInterface $input, OutputInterface $output): int + { + $header = $output->section(); + $counter = $output->section(); + + $header->writeln([ + "DDEX ERN processor utility", + "=====================", + "", + ]); + + return Command::SUCCESS; + } +}