Skip to content

Commit

Permalink
spell fix
Browse files Browse the repository at this point in the history
  • Loading branch information
veneliniliev committed Mar 29, 2021
1 parent fed6522 commit 43c384d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Response.php
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ protected function verifyData()
'NONCE',
];

$dateToVerify = [];
$dataToVerify = [];

/**
* Response from borica
Expand All @@ -97,11 +97,11 @@ protected function verifyData()
$responseFromBorica['CURRENCY'] = 'USD';
}

$dateToVerify[] = $responseFromBorica[$key];
$dataToVerify[] = $responseFromBorica[$key];
}
}

$this->verifyPublicSignature($dateToVerify, $responseFromBorica['P_SIGN']);
$this->verifyPublicSignature($dataToVerify, $responseFromBorica['P_SIGN']);

$this->dataIsVerified = true;
}
Expand Down

0 comments on commit 43c384d

Please sign in to comment.