Files
admin-php-module/core/app/Console/Kernel.php
2020-12-21 17:02:11 +03:00

31 lines
590 B
PHP

<?php
namespace App\Console;
use App\Commands\HelloWorld;
use Illuminate\Console\Scheduling\Schedule;
use Laravel\Lumen\Console\Kernel as ConsoleKernel;
class Kernel extends ConsoleKernel
{
/**
* The Artisan commands provided by your application.
*
* @var array
*/
protected $commands = [
HelloWorld::class
];
/**
* Define the application's command schedule.
*
* @param \Illuminate\Console\Scheduling\Schedule $schedule
* @return void
*/
protected function schedule(Schedule $schedule)
{
//
}
}