Skip to content

Instantly share code, notes, and snippets.

@coreymcmahon
Last active August 29, 2015 14:15
Show Gist options
  • Save coreymcmahon/899ecf075730860d9458 to your computer and use it in GitHub Desktop.
Save coreymcmahon/899ecf075730860d9458 to your computer and use it in GitHub Desktop.
<?php namespace App\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 = [
'App\Console\Commands\Inspire',
/** add custom commands in here */
];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment