| 1234567891011121314151617181920212223242526 |
- <?php
- declare(strict_types=1);
- namespace App\Console;
- use Hypervel\Console\Scheduling\Schedule;
- use Hypervel\Foundation\Console\Kernel as ConsoleKernel;
- class Kernel extends ConsoleKernel
- {
- /**
- * Define the application's command schedule.
- */
- public function schedule(Schedule $schedule): void
- {
- // $schedule->command('demo:hi')->everyFiveSeconds();
- }
- public function commands(): void
- {
- $this->load(__DIR__ . '/Commands');
- require base_path('routes/console.php');
- }
- }
|