Commit aa8bf8a2 authored by Taylor Otwell's avatar Taylor Otwell

Bind the kernels as singletons.

parent d70914b8
......@@ -26,12 +26,12 @@ $app = new Illuminate\Foundation\Application(
|
*/
$app->bind(
$app->singleton(
'Illuminate\Contracts\Http\Kernel',
'App\Http\Kernel'
);
$app->bind(
$app->singleton(
'Illuminate\Contracts\Console\Kernel',
'App\Console\Kernel'
);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment