Skip to content

Commit eb0d422

Browse files
author
rkesarwa
committed
change card expiration year
1 parent d79f500 commit eb0d422

5 files changed

Lines changed: 7 additions & 7 deletions

File tree

samples/AuthFollowOnCapture.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
// Using Composer-generated autoload file.
66
require __DIR__ . '/../vendor/autoload.php';
77
// Or, uncomment the line below if you're not using Composer autoloader.
8-
// require_once(__DIR__ . '/../lib/CybsSoapClient.php');
8+
//require_once(__DIR__ . '/../lib/CybsSoapClient.php');
99

1010

1111
// Before using this example, you can use your own reference code for the transaction.
@@ -35,7 +35,7 @@
3535
$card = new stdClass();
3636
$card->accountNumber = '4111111111111111';
3737
$card->expirationMonth = '12';
38-
$card->expirationYear = '2020';
38+
$card->expirationYear = '2021';
3939
$request->card = $card;
4040

4141
$purchaseTotals = new stdClass();

samples/AuthFromNameValuePairs.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
// Using Composer-generated autoload file.
66
require __DIR__ . '/../vendor/autoload.php';
77
// Or, uncomment the line below if you're not using Composer autoloader.
8-
// require_once(__DIR__ . '/../lib/CybsNameValuePairClient.php');
8+
//require_once(__DIR__ . '/../lib/CybsNameValuePairClient.php');
99

1010

1111
// Before using this example, you can use your own reference code for the transaction.
@@ -26,7 +26,7 @@
2626
$request['billTo_email'] = 'jsmith@example.com';
2727
$request['card_accountNumber'] = '4111111111111111';
2828
$request['card_expirationMonth'] = '12';
29-
$request['card_expirationYear'] = '2019';
29+
$request['card_expirationYear'] = '2021';
3030
$request['purchaseTotals_currency'] = 'USD';
3131
$request['item_0_unitPrice'] = '12.34';
3232
$request['item_1_unitPrice'] = '56.78';

samples/Sale.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
$card = new stdClass();
4040
$card->accountNumber = '4111111111111111';
4141
$card->expirationMonth = '12';
42-
$card->expirationYear = '2020';
42+
$card->expirationYear = '2021';
4343
$request->card = $card;
4444

4545
$purchaseTotals = new stdClass();

samples/Subscription.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
$card = new stdClass();
3535
$card->accountNumber = '4111111111111111';
3636
$card->expirationMonth = '12';
37-
$card->expirationYear = '2020';
37+
$card->expirationYear = '2021';
3838
$card->cardType='001';
3939
$request->card = $card;
4040

samples/xml/auth.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
<card>
3636
<accountNumber>4111111111111111</accountNumber>
3737
<expirationMonth>12</expirationMonth>
38-
<expirationYear>2020</expirationYear>
38+
<expirationYear>2021</expirationYear>
3939
</card>
4040
<ccAuthService run="true">
4141
</ccAuthService>

0 commit comments

Comments
 (0)