We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 99950cf commit 56313f1Copy full SHA for 56313f1
src/Omnipay/Ukash/Message/Response.php
@@ -36,11 +36,11 @@ public function __construct($request, $data)
36
*/
37
public function isSuccessful()
38
{
39
- if ($this->data->errCode !== '0') {
+ if ($this->data->errCode != '0') {
40
return false;
41
} elseif (!isset($this->data->TransactionCode)) {
42
43
- } elseif ($this->data->TransactionCode !== '0') {
+ } elseif ($this->data->TransactionCode != '0') {
44
45
} elseif ($this->data->SecurityToken != $this->getRequest()->getResponseSecurityToken()) {
46
0 commit comments