Merge pull request #81 from jonnybarnes/analysis-8Kmjr6

Apply fixes from StyleCI
This commit is contained in:
Jonny Barnes 2018-02-01 10:21:44 +00:00 committed by GitHub
commit 664167b8c3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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