2016-08-28 10:05:21 +08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Console;
|
|
|
|
|
|
|
|
use Illuminate\Foundation\Console\Kernel as ConsoleKernel;
|
|
|
|
|
|
|
|
class Kernel extends ConsoleKernel
|
|
|
|
{
|
|
|
|
protected $commands = [
|
2019-05-07 18:47:40 +08:00
|
|
|
\Laravel\Passport\Console\KeysCommand::class,
|
2016-08-28 10:05:21 +08:00
|
|
|
];
|
2020-04-01 15:34:06 +08:00
|
|
|
|
|
|
|
protected function commands()
|
|
|
|
{
|
|
|
|
$this->load(__DIR__.'/Commands');
|
|
|
|
}
|
2016-08-28 10:05:21 +08:00
|
|
|
}
|