Implement doctrine orm as command

This commit is contained in:
Tim
2023-08-17 15:41:25 +02:00
parent f8d1c66934
commit 7a4a9257c3
3 changed files with 36 additions and 1 deletions

View File

@ -2,6 +2,7 @@
namespace App;
use App\Console\OrmCommand;
use App\Console\TestCommand;
use App\Controller\HelloWorldController;
use Ardent\Undercurrent\Console\CommandsConfig;
@ -19,6 +20,7 @@ class Kernel extends BaseKernel
$commands = new CommandsConfig();
$commands->add(TestCommand::class);
$commands->add(OrmCommand::class);
$this->addCommands($container, $commands);
}
}