mirror of https://github.com/flarum/flarum
parent
f5c63354d5
commit
c4cc65c561
|
@ -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 = [
|
||||||
|
//
|
||||||
|
];
|
||||||
|
|
||||||
|
}
|
|
@ -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(
|
||||||
|
|
Loading…
Reference in New Issue