diff --git a/bootstrap/app.php b/bootstrap/app.php index d05535bf..a8f113dd 100644 --- a/bootstrap/app.php +++ b/bootstrap/app.php @@ -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'); /* |--------------------------------------------------------------------------