Add back console Kernel

L5 complains when it’s gone
pull/2/head
Toby Zerner 2015-02-24 21:43:45 +10:30
parent f5c63354d5
commit c4cc65c561
2 changed files with 17 additions and 1 deletions

16
app/Console/Kernel.php Normal file
View File

@ -0,0 +1,16 @@
<?php namespace App\Console;
use Illuminate\Foundation\Console\Kernel as ConsoleKernel;
class Kernel extends ConsoleKernel {
/**
* The Artisan commands provided by your application.
*
* @var array
*/
protected $commands = [
//
];
}

View File

@ -33,7 +33,7 @@ $app->singleton(
$app->singleton( $app->singleton(
'Illuminate\Contracts\Console\Kernel', 'Illuminate\Contracts\Console\Kernel',
'Illuminate\Foundation\Console\Kernel' 'App\Console\Kernel'
); );
$app->singleton( $app->singleton(