mirror of
https://github.com/exane/not-gwent-online
synced 2024-10-31 10:36:53 +00:00
31 lines
649 B
PHP
31 lines
649 B
PHP
|
<?php
|
||
|
|
||
|
namespace Gwent\Console;
|
||
|
|
||
|
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 = [
|
||
|
\Gwent\Console\Commands\Inspire::class,
|
||
|
];
|
||
|
|
||
|
/**
|
||
|
* Define the application's command schedule.
|
||
|
*
|
||
|
* @param \Illuminate\Console\Scheduling\Schedule $schedule
|
||
|
* @return void
|
||
|
*/
|
||
|
protected function schedule(Schedule $schedule)
|
||
|
{
|
||
|
$schedule->command('inspire')
|
||
|
->hourly();
|
||
|
}
|
||
|
}
|