FleetCart/app/Console/Kernel.php
2023-12-03 14:07:47 +00:00

34 lines
719 B
PHP

<?php
namespace FleetCart\Console;
use Illuminate\Console\Scheduling\Schedule;
use Illuminate\Foundation\Console\Kernel as ConsoleKernel;
class Kernel extends ConsoleKernel
{
/**
* The Artisan commands provided by your application.
*
* @var array
*/
protected $commands = [
Commands\ScaffoldModuleCommand::class,
Commands\ScaffoldEntityCommand::class,
];
/**
* Define the application's command schedule.
*
* @param Schedule $schedule
*
* @return void
*/
protected function schedule(Schedule $schedule): void
{
// $schedule->command('inspire')
// ->hourly();
}
}