File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -285,9 +285,8 @@ The `$creditCard` object will provide the billing and shipping details:
285285use Omnipay\Common\CreditCard;
286286
287287$creditCard = new CreditCard([
288- 'firstName' => 'Joe',
289- 'lastName' => 'Bloggs',
290- //
288+ 'billingFirstName' => 'Joe',
289+ 'billingLastName' => 'Bloggs',
291290 'billingAddress1' => 'Billing Address 1',
292291 'billingAddress2' => 'Billing Address 2',
293292 //'billingState' => '',
@@ -299,6 +298,8 @@ $creditCard = new CreditCard([
299298 'email' => 'test@example.com',
300299 'clientIp' => '123.123.123.123',
301300 //
301+ 'shippingFirstName' => 'Joe',
302+ 'shippingLastName' => 'Bloggs',
302303 'shippingAddress1' => '99',
303304 'shippingState' => 'NY',
304305 'shippingCity' => 'City1',
You can’t perform that action at this time.
0 commit comments