Skip to content

Commit 44a729f

Browse files
authored
Fix: Customer::listPackages usage in readme
1 parent 248202b commit 44a729f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Diff for: README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,8 @@ $client->customers()->remove($customerId);
7171

7272
##### List a customer's packages
7373
```php
74-
$packages = $client->customers()->listPackages();
74+
$customerId = 42;
75+
$packages = $client->customers()->listPackages($customerId);
7576
```
7677
Returns an array of customer packages.
7778

0 commit comments

Comments
 (0)