Skip to content

Commit

Permalink
Merge pull request #9 from 365Werk/analysis-5ZyrZv
Browse files Browse the repository at this point in the history
Apply fixes from StyleCI
  • Loading branch information
HergenD authored Aug 3, 2020
2 parents 7399238 + 25047b8 commit 36469b9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/IdentityDocuments.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ public static function parse(Request $request)
]);
if ($validator->fails()) {
return json_encode([
"error" => $validator->errors()->first(),
"success" => false,
'error' => $validator->errors()->first(),
'success' => false,
]);
}

Expand All @@ -48,8 +48,8 @@ public static function parse(Request $request)
$full_img = Image::make($images->back_img);
} else {
return json_encode([
"error" => "Missing images",
"success" => false,
'error' => 'Missing images',
'success' => false,
]);
}

Expand Down

0 comments on commit 36469b9

Please sign in to comment.