We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f71ec2b + 085315d commit 6b42583Copy full SHA for 6b42583
README.md
@@ -285,9 +285,8 @@ The `$creditCard` object will provide the billing and shipping details:
285
use Omnipay\Common\CreditCard;
286
287
$creditCard = new CreditCard([
288
- 'firstName' => 'Joe',
289
- 'lastName' => 'Bloggs',
290
- //
+ 'billingFirstName' => 'Joe',
+ 'billingLastName' => 'Bloggs',
291
'billingAddress1' => 'Billing Address 1',
292
'billingAddress2' => 'Billing Address 2',
293
//'billingState' => '',
@@ -299,6 +298,8 @@ $creditCard = new CreditCard([
299
298
'email' => '[email protected]',
300
'clientIp' => '123.123.123.123',
301
//
+ 'shippingFirstName' => 'Joe',
302
+ 'shippingLastName' => 'Bloggs',
303
'shippingAddress1' => '99',
304
'shippingState' => 'NY',
305
'shippingCity' => 'City1',
0 commit comments