mirror of
https://github.com/koel/koel
synced 2024-11-24 13:13:05 +00:00
13 lines
226 B
PHP
13 lines
226 B
PHP
<?php
|
|
|
|
namespace App\Console;
|
|
|
|
use Illuminate\Foundation\Console\Kernel as ConsoleKernel;
|
|
|
|
class Kernel extends ConsoleKernel
|
|
{
|
|
protected function commands(): void
|
|
{
|
|
$this->load(__DIR__ . '/Commands');
|
|
}
|
|
}
|