We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The sync action tries to access a non existing token field:
// Action/SyncAction.php if ($details->offsetExists('token')) { $this->gateway->execute(new AssertPaymentPage($details)); }
Must be:
// Action/SyncAction.php if ($details->offsetExists('Token')) { // Token instead of token (first letter uppercase) $this->gateway->execute(new AssertPaymentPage($details)); }
The text was updated successfully, but these errors were encountered:
Can you please make a PR?
Sorry, something went wrong.
fix token typo in SyncAction, fixes karser#17
0e99b2a
solverat
Successfully merging a pull request may close this issue.
The sync action tries to access a non existing token field:
Must be:
The text was updated successfully, but these errors were encountered: