From 9cfb1e1ebebcef4a141dbda33eabb26ed444c5b7 Mon Sep 17 00:00:00 2001 From: Graham Campbell Date: Thu, 24 Dec 2015 17:50:20 +0000 Subject: [PATCH] CS fixes --- bootstrap/app.php | 15 +++------------ 1 file changed, 3 insertions(+), 12 deletions(-) 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'); /* |--------------------------------------------------------------------------