1
0
mirror of https://github.com/exane/not-gwent-online synced 2024-10-31 10:36:53 +00:00
not-gwent-online/site/server/app/Console/Kernel.php
2015-07-03 11:36:59 +02:00

48 lines
867 B
PHP
Executable File

<?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();
}
/**
* @param $message
*
* @return $this
*/
public function withMessage($message)
{
$this->message = $message;
return $this;
}
public function returnAccess($id)
{
}
}