koel/app/Console/Kernel.php

14 lines
226 B
PHP
Raw Normal View History

2015-12-13 12:42:28 +08:00
<?php
namespace App\Console;
use Illuminate\Foundation\Console\Kernel as ConsoleKernel;
class Kernel extends ConsoleKernel
{
2020-12-22 21:11:22 +01:00
protected function commands(): void
2015-12-13 12:42:28 +08:00
{
2020-12-22 21:11:22 +01:00
$this->load(__DIR__ . '/Commands');
2015-12-13 12:42:28 +08:00
}
}