Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
0xNe0x1 committed Jan 6, 2024
1 parent a94ade0 commit 93ebd62
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion includes/class-depay-wc-payments-gateway.php
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ public function get_accept( $order ) {
} else {
$amount = $this->round_token_amount( $responses[$i]->body );
}
if ( !empty( $amount ) && strval( $amount ) !== "0.00" ) {
if ( !empty( $amount ) && strval( $amount ) !== '0.00' ) {
array_push($accept, [
'blockchain' => $accepted_payment->blockchain,
'token' => $accepted_payment->token,
Expand Down

0 comments on commit 93ebd62

Please sign in to comment.