koel/app/Console/Kernel.php

14 lines
226 B
PHP
Raw Normal View History

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