Style CI fix

This commit is contained in:
Jonny Barnes 2016-12-08 14:30:25 +00:00
parent 263d1f83c8
commit 26fe6ff559

View file

@ -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'),
]);
}