Browse Source

Add back console Kernel

L5 complains when it’s gone
pull/2/head
Toby Zerner 10 years ago
parent
commit
c4cc65c561
  1. 16
      app/Console/Kernel.php
  2. 2
      bootstrap/app.php

16
app/Console/Kernel.php

@ -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 = [
//
];
}

2
bootstrap/app.php

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

Loading…
Cancel
Save