Skip to content

Commit

Permalink
Apply fixes from StyleCI
Browse files Browse the repository at this point in the history
  • Loading branch information
StyleCIBot committed Dec 12, 2024
1 parent f0444a2 commit b89895a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Concerns/ManagesCustomer.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public function createAsCustomer(array $options = [])
// Attempt to find the customer by email address first...
$response = Cashier::api('GET', 'customers', [
'status' => 'active,archived',
'email' => $options['email'],
'email' => $options['email'],
])['data'][0] ?? null;

// If we can't find the customer by email, we'll create them on Paddle...
Expand Down

0 comments on commit b89895a

Please sign in to comment.