Skip to content

Commit

Permalink
fix code style
Browse files Browse the repository at this point in the history
  • Loading branch information
mateusztwardowski committed Jan 11, 2024
1 parent adbe1dd commit f9def6d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ public function process_payment( $order_id ): array {
} elseif ( self::PAYNOW_PAYMENT_GATEWAY[ self::BLIK_PAYMENT ] === $payment_method ) {
$authorization_code = preg_replace( '/\s+/', '', filter_input( INPUT_POST, 'authorizationCode' ) );
} elseif ( self::PAYNOW_PAYMENT_GATEWAY[ self::CARD_PAYMENT ] === $payment_method ) {
$payment_method_token = filter_input( INPUT_POST, 'paymentMethodToken', FILTER_SANITIZE_STRING );
$payment_method_token = filter_input( INPUT_POST, 'paymentMethodToken', FILTER_SANITIZE_STRING );
$payment_method_fingerprint = filter_input( INPUT_POST, 'paymentMethodFingerprint', FILTER_SANITIZE_STRING );
}

Expand Down

0 comments on commit f9def6d

Please sign in to comment.