Skip to content

Commit

Permalink
SP-640 Fix PHPCS issue in class-bitpayeddabandonorder.php
Browse files Browse the repository at this point in the history
  • Loading branch information
bobbrodie committed Aug 2, 2023
1 parent 1c0b2b2 commit 236f695
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion BitPayEddLib/class-bitpayeddabandonorder.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public function __construct( BitPayCheckoutTransactions $bitpay_checkout_transac
public function execute( WP_REST_Request $request ): void {
$data = $request->get_params();
$invoice_id = $data['invoiceid'];
$order_id = $this->bitpay_checkout_transactions->get_order_id_by_invoice_id( (string) $invoice_id);
$order_id = $this->bitpay_checkout_transactions->get_order_id_by_invoice_id( (string) $invoice_id );
if ( ! $order_id ) {
die();
}
Expand Down

0 comments on commit 236f695

Please sign in to comment.