blessing-skin-server/app/Console/Kernel.php
2023-05-30 14:56:27 +08:00

17 lines
290 B
PHP

<?php
namespace App\Console;
use Illuminate\Foundation\Console\Kernel as ConsoleKernel;
class Kernel extends ConsoleKernel
{
/**
* Register the commands for the application.
*/
protected function commands(): void
{
$this->load(__DIR__.'/Commands');
}
}