Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
MykolasVitkus committed May 11, 2020
1 parent ca7ad6e commit 579b040
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Action/StatusAction.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,17 +24,17 @@ public function execute($request)
case null:
case 'pending':
case 'NEW':
$request->markNew();
break;
$request->markNew();
return;
case 'COMPLETED':
$request->markCaptured();
break;
return;
case 'FAILED':
$request->markFailed();
break;
return;
case 'NOT_EXECUTED':
$request->markPending();
break;
return;
}
$request->markUnknown();

Expand Down

0 comments on commit 579b040

Please sign in to comment.