Skip to content

Commit 27416ee

Browse files
committed
add card no limit
1 parent fc41884 commit 27416ee

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

doc/customer.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,9 +96,8 @@ if ($cards->isError) {
9696

9797
```php
9898
$cardToken = 'your_stripe_card_token';
99-
$cardMaxLimit = 3; // Set the maximum number of cards per customer
10099

101-
$response = $stripeCustomer->addCard($customerId, $cardToken, $cardMaxLimit);
100+
$response = $stripeCustomer->addCard($customerId, $cardToken);
102101

103102
if ($response->isError) {
104103
// Handle errors

0 commit comments

Comments
 (0)