From 160d179b0ef5e08e3a5900ea8420d7ad306de73d Mon Sep 17 00:00:00 2001 From: James Brooks Date: Wed, 31 Dec 2014 11:51:06 +0000 Subject: [PATCH] Fix CS --- app/controllers/DashSettingsController.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/app/controllers/DashSettingsController.php b/app/controllers/DashSettingsController.php index 664edbc0..a23ff300 100644 --- a/app/controllers/DashSettingsController.php +++ b/app/controllers/DashSettingsController.php @@ -124,16 +124,16 @@ class DashSettingsController extends Controller // Store the banner. Setting::firstOrCreate([ - 'name' => 'app_banner' + 'name' => 'app_banner', ])->update([ - 'value' => base64_encode(file_get_contents($file->getRealPath())) + 'value' => base64_encode(file_get_contents($file->getRealPath())), ]); // Store the banner type Setting::firstOrCreate([ - 'name' => 'app_banner_type' + 'name' => 'app_banner_type', ])->update([ - 'value' => $file->getMimeType() + 'value' => $file->getMimeType(), ]); }