This commit is contained in:
Graham Campbell
2015-12-24 17:50:20 +00:00
parent b1f94b965f
commit 9cfb1e1ebe

View File

@@ -24,20 +24,11 @@ $app = new Illuminate\Foundation\Application(
|
*/
$app->singleton(
'Illuminate\Contracts\Http\Kernel',
'CachetHQ\Cachet\Http\Kernel'
);
$app->singleton('Illuminate\Contracts\Http\Kernel', 'CachetHQ\Cachet\Http\Kernel');
$app->singleton(
'Illuminate\Contracts\Console\Kernel',
'CachetHQ\Cachet\Console\Kernel'
);
$app->singleton('Illuminate\Contracts\Console\Kernel', 'CachetHQ\Cachet\Console\Kernel');
$app->singleton(
'Illuminate\Contracts\Debug\ExceptionHandler',
'GrahamCampbell\Exceptions\ExceptionHandler'
);
$app->singleton('Illuminate\Contracts\Debug\ExceptionHandler', 'GrahamCampbell\Exceptions\ExceptionHandler');
/*
|--------------------------------------------------------------------------