tissue/app/Console/Kernel.php

45 lines
937 B
PHP
Raw Normal View History

2017-08-27 04:44:53 +09:00
<?php
namespace App\Console;
2019-02-11 14:46:43 +09:00
use App\Console\Commands\DemoteUser;
use App\Console\Commands\PromoteUser;
2017-08-27 04:44:53 +09:00
use Illuminate\Console\Scheduling\Schedule;
use Illuminate\Foundation\Console\Kernel as ConsoleKernel;
class Kernel extends ConsoleKernel
{
/**
* The Artisan commands provided by your application.
*
* @var array
*/
protected $commands = [
//
];
/**
* Define the application's command schedule.
*
* @param \Illuminate\Console\Scheduling\Schedule $schedule
* @return void
*/
protected function schedule(Schedule $schedule)
{
// $schedule->command('inspire')
// ->hourly();
}
/**
* Register the Closure based commands for the application.
*
* @return void
*/
protected function commands()
{
2019-02-11 14:46:43 +09:00
$this->load(__DIR__.'/Commands');
2017-08-27 04:44:53 +09:00
require base_path('routes/console.php');
}
}