Skip to content

Commit c39ac3e

Browse files
authored
Merge pull request #74 from joselfonseca/analysis-ormZK7
Apply fixes from StyleCI
2 parents 2085be9 + 29cd85d commit c39ac3e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/GraphQL/Mutations/UpdatePassword.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public function resolve($rootValue, array $args, GraphQLContext $context = null,
2626
$user = $context->user();
2727
if (!Hash::check($args['old_password'], $user->password)) {
2828
throw new ValidationException([
29-
'password' => _('Current password is incorrect')
29+
'password' => _('Current password is incorrect'),
3030
], 'Validation Exception');
3131
}
3232
$user->password = Hash::make($args['password']);

0 commit comments

Comments
 (0)