Skip to content

Commit

Permalink
change method name.
Browse files Browse the repository at this point in the history
  • Loading branch information
srmklive authored Jun 27, 2024
1 parent d377ae6 commit ab7f27a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Concerns/ManagesPaymentMethods.php
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ public function hasValidDefaultPaymentMethod()
return ! (($this->defaultPaymentMethod() === null) ||
(
($this->defaultPaymentMethod()->id !== null) &&
($this->resolveStripePaymentMethod($this->defaultPaymentMethod()->id) === null)
($this->findPaymentMethod($this->defaultPaymentMethod()->id) === null)
));
}

Expand Down

0 comments on commit ab7f27a

Please sign in to comment.