Skip to content

Commit 2819a77

Browse files
authored
Merge pull request #79 from joselfonseca/analysis-gOZxyQ
Apply fixes from StyleCI
2 parents cdf670e + 116435c commit 2819a77

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/GraphQL/Mutations/BaseAuthResolver.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ public function makeRequest(array $credentials)
4242
$response = app()->handle($request);
4343
$decodedResponse = json_decode($response->getContent(), true);
4444
if ($response->getStatusCode() === 400) {
45-
throw new AuthenticationException(_("Incorrect username and password"));
45+
throw new AuthenticationException(_('Incorrect username and password'));
4646
}
4747
if ($response->getStatusCode() != 200) {
4848
throw new AuthenticationException($decodedResponse['message']);

0 commit comments

Comments
 (0)