From 26fe6ff5596042276ef5f19379da5563b106ec4a Mon Sep 17 00:00:00 2001 From: Jonny Barnes Date: Thu, 8 Dec 2016 14:30:25 +0000 Subject: [PATCH] Style CI fix --- app/Http/Controllers/MicropubController.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/Http/Controllers/MicropubController.php b/app/Http/Controllers/MicropubController.php index 5e7e3a92..411580d9 100644 --- a/app/Http/Controllers/MicropubController.php +++ b/app/Http/Controllers/MicropubController.php @@ -124,7 +124,7 @@ class MicropubController extends Controller //we have a valid token, is `syndicate-to` set? if ($request->input('q') === 'syndicate-to') { return response()->json([ - 'syndicate-to' => config('syndication.targets') + 'syndicate-to' => config('syndication.targets'), ]); } //nope, how about a geo URL? @@ -148,7 +148,7 @@ class MicropubController extends Controller //nope, ho about a config query? if ($request->input('q') == 'config') { return response()->json([ - 'syndicate-to' => config('syndication.targets') + 'syndicate-to' => config('syndication.targets'), ]); }