Apply fixes from StyleCI

This commit is contained in:
Jonny Barnes 2018-02-01 10:15:51 +00:00 committed by StyleCI Bot
parent 03cb6a2645
commit edbad3b378

View file

@ -68,12 +68,12 @@ class TokenEndpointController extends Controller
} }
return response()->json([ return response()->json([
'error' => 'There was an error verifying the authorisation code.' 'error' => 'There was an error verifying the authorisation code.',
], 401); ], 401);
} }
return response()->json([ return response()->json([
'error' => 'Cant determine the authorisation endpoint.' 'error' => 'Cant determine the authorisation endpoint.',
], 400); ], 400);
} }
} }