Skip to content

Commit

Permalink
ci fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
srmklive authored Jun 27, 2024
1 parent ca8b3ec commit a1bb81a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Concerns/ManagesPaymentMethods.php
Original file line number Diff line number Diff line change
Expand Up @@ -56,10 +56,10 @@ public function hasDefaultPaymentMethod()
*/
public function hasValidDefaultPaymentMethod()
{
return !(($this->defaultPaymentMethod() === null) ||
return ! (($this->defaultPaymentMethod() === null) ||
(
($this->defaultPaymentMethod()->id !== null) &&
($this->resolveStripePaymentMethod($this->defaultPaymentMethod()->id)=== null)
($this->resolveStripePaymentMethod($this->defaultPaymentMethod()->id) === null)
));
}

Expand Down

0 comments on commit a1bb81a

Please sign in to comment.