Skip to content
This repository was archived by the owner on Oct 30, 2020. It is now read-only.

Commit 14525af

Browse files
author
Craig Paul
committed
Adds another caveat to docs
1 parent 7c35112 commit 14525af

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -186,9 +186,9 @@ $params = [
186186
$response = $gateway->verify($params); // could be purchase, preauth, etc.
187187
```
188188

189-
> Note: When making an AVS or CVD secured transaction, even if AVS or CVD fails, you will still have to void the transaction. There are two easy ways around this (DAMN MONERIS!).
189+
> Note: When making an AVS or CVD secured transaction, even if AVS or CVD fails, you will still have to void the transaction (DAMN MONERIS!). There are two easy ways around this.
190190
191-
Verify the card first.
191+
Verify the card first. Using this method, there is one additional caveat (let me repeat it again...DAMN MONERIS!). Your verification transaction and purchase transaction must have different `order_id` parameters. One such solution could be to prepend an specific prefix to the front of verification order ids.
192192

193193
```php
194194
$response = $gateway->verify($params);
@@ -207,7 +207,7 @@ if ($response->successful && !$response->failedAvs && !$response->failedCvd) {
207207
Void the transaction.
208208

209209
```php
210-
$response = $gateway->purchase($params);
210+
$response = $gateway->purchase($params);
211211

212212
if ($response->successful && ($response->failedAvs || $response->failedCvd)) {
213213
$errors = $response->errors;

0 commit comments

Comments
 (0)