Neue Tabellen
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
dotworker
2023-01-10 10:36:02 +01:00
parent 2be165a8c1
commit f7b2a93197
4 changed files with 313 additions and 4 deletions

View File

@@ -2,7 +2,7 @@
namespace App\Command;
use App\Helper\Hiltes;
use App\Helper\HiltesImport;
use Symfony\Component\Console\Attribute\AsCommand;
use Symfony\Component\Console\Command\Command;
use Symfony\Component\Console\Input\InputArgument;
@@ -35,10 +35,12 @@ class HiltesImportCommand extends Command
if ($arg1) {
$io->note(sprintf('You passed an argument: %s', $arg1));
}
/**
* @var HiltesImport
*/
$hiltesImport = new HiltesImport();
$hiltes = new Hiltes();
$hiltes->import();
$hiltesImport->startImport();
$io->success('You have a new command! Now make it your own! Pass --help to see your options.');