Skip to content

Commit

Permalink
Apply fixes from StyleCI
Browse files Browse the repository at this point in the history
  • Loading branch information
RTLer authored and StyleCIBot committed Jan 31, 2018
1 parent 7cf7d8a commit 656f772
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 656f772

Please sign in to comment.