Page MenuHomeDevCentral

Kernel.php
No OneTemporary

Kernel.php

<?php namespace AuthGrove\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 = [
'AuthGrove\Console\Commands\AccountInfo',
'AuthGrove\Console\Commands\AccountDump',
'AuthGrove\Console\Commands\AccountReset',
'AuthGrove\Console\Commands\Inspire',
'AuthGrove\Console\Commands\DatabaseShell',
];
/**
* Define the application's command schedule.
*
* @param \Illuminate\Console\Scheduling\Schedule $schedule
* @return void
*/
protected function schedule(Schedule $schedule)
{
$schedule->command('inspire')
->hourly();
}
}

File Metadata

Mime Type
text/x-php
Expires
Mon, Nov 17, 16:04 (1 d, 16 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
3165003
Default Alt Text
Kernel.php (759 B)

Event Timeline