Skip to content
This repository was archived by the owner on Aug 26, 2025. It is now read-only.

Commit 55d102e

Browse files
authored
Update README.md
1 parent 9501ed2 commit 55d102e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,10 @@ $customer->setCountryCode('US');
2929
$cuenticaClient->customer()->update($customer);
3030

3131
// Delete a customer by ID.
32-
$customer = $cuenticaClient->customer()->delete(1);
32+
$cuenticaClient->customer()->delete(1);
3333

3434
// Search customers.
35-
$customer = $cuenticaClient->customer()->search('my query string', $pageSize, $page);
35+
$customers = $cuenticaClient->customer()->search('my query string', $pageSize, $page);
3636

3737
// Create a customer (it's individual, but can be a company or a generic one).
3838
$customer = new Individual(

0 commit comments

Comments
 (0)