Bind the kernels as singletons.

This commit is contained in:
Taylor Otwell 2014-10-25 21:27:57 -05:00
parent d70914b84d
commit aa8bf8a211
1 changed files with 2 additions and 2 deletions

View File

@ -26,12 +26,12 @@
|
*/
$app->bind(
$app->singleton(
'Illuminate\Contracts\Http\Kernel',
'App\Http\Kernel'
);
$app->bind(
$app->singleton(
'Illuminate\Contracts\Console\Kernel',
'App\Console\Kernel'
);