49 lines
1.3 KiB
PHP
49 lines
1.3 KiB
PHP
<?php
|
|
|
|
namespace App\Command;
|
|
|
|
use App\Helper\Hiltes;
|
|
use Symfony\Component\Console\Attribute\AsCommand;
|
|
use Symfony\Component\Console\Command\Command;
|
|
use Symfony\Component\Console\Input\InputArgument;
|
|
use Symfony\Component\Console\Input\InputInterface;
|
|
use Symfony\Component\Console\Input\InputOption;
|
|
use Symfony\Component\Console\Output\OutputInterface;
|
|
use Symfony\Component\Console\Style\SymfonyStyle;
|
|
|
|
use Symfony\Component\Finder\Finder;
|
|
|
|
#[AsCommand(
|
|
name: 'hiltes:import',
|
|
description: 'Importiert die Bestandsdaten von Hiltes',
|
|
)]
|
|
class HiltesImportCommand extends Command
|
|
{
|
|
protected function configure(): void
|
|
{
|
|
$this
|
|
->addArgument('arg1', InputArgument::OPTIONAL, 'Argument description')
|
|
->addOption('option1', null, InputOption::VALUE_NONE, 'Option description')
|
|
;
|
|
}
|
|
|
|
protected function execute(InputInterface $input, OutputInterface $output): int
|
|
{
|
|
$io = new SymfonyStyle($input, $output);
|
|
$arg1 = $input->getArgument('arg1');
|
|
|
|
if ($arg1) {
|
|
$io->note(sprintf('You passed an argument: %s', $arg1));
|
|
}
|
|
|
|
$hiltes = new Hiltes();
|
|
|
|
$hiltes->import();
|
|
|
|
|
|
$io->success('You have a new command! Now make it your own! Pass --help to see your options.');
|
|
|
|
return Command::SUCCESS;
|
|
}
|
|
}
|