diff --git a/src/Console/Command/ListThemesCommand.php b/src/Console/Command/ListThemesCommand.php index eab0987..872cbd6 100644 --- a/src/Console/Command/ListThemesCommand.php +++ b/src/Console/Command/ListThemesCommand.php @@ -12,35 +12,21 @@ class ListThemesCommand extends Command { - /** - * Constructor - * - * @param ThemeList $themeList - */ public function __construct( private readonly ThemeList $themeList, ) { parent::__construct(); } - /** - * Configure the command - */ - protected function configure(): void { + protected function configure(): void + { $this->setName('mageforge:themes:list'); $this->setDescription('Lists all available themes'); } - /** - * Execute the command - * - * @param InputInterface $input - * @param OutputInterface $output - * @return int - */ protected function execute( InputInterface $input, - OutputInterface $output + OutputInterface $output, ): int { $themes = $this->themeList->getAllThemes();