Skip to content

Commit

Permalink
Merge pull request #23 from RTLer/analysis-qo6bpP
Browse files Browse the repository at this point in the history
Apply fixes from StyleCI
  • Loading branch information
RTLer authored Jan 31, 2018
2 parents 7cf7d8a + 656f772 commit 16c349c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/Drivers/RestDriver.php
Original file line number Diff line number Diff line change
Expand Up @@ -63,12 +63,12 @@ public function verify($inputs)
if ($result['Status'] == 100) {
return [
'Status' => 'success',
'RefID' => $result['RefID'],
'RefID' => $result['RefID'],
];
} elseif ($result['Status'] == 101) {
return [
'Status' => 'verified_before',
'RefID' => $result['RefID'],
'RefID' => $result['RefID'],
];
} else {
return [
Expand Down Expand Up @@ -98,8 +98,8 @@ public function verifyWithExtra($inputs)
];
} elseif ($result['Status'] == 101) {
return [
'Status' => 'verified_before',
'RefID' => $result['RefID'],
'Status' => 'verified_before',
'RefID' => $result['RefID'],
'ExtraDetail' => $result['ExtraDetail'],
];
} else {
Expand Down

0 comments on commit 16c349c

Please sign in to comment.