koel/app/Console/Kernel.php

14 lines
220 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
{
2018-08-24 15:34:06 +00:00
protected function commands()
2015-12-13 04:42:28 +00:00
{
2018-08-24 15:34:06 +00:00
$this->load(__DIR__ . '/Commands');
2015-12-13 04:42:28 +00:00
}
}