diff --git a/src/Gateway.php b/src/Gateway.php index 23ce186..f280f75 100644 --- a/src/Gateway.php +++ b/src/Gateway.php @@ -643,12 +643,12 @@ public function process_purchase( $purchase_data ) { * Get payment transaction ID * * @link https://github.com/easydigitaldownloads/Easy-Digital-Downloads/blob/2.3/includes/payments/functions.php#L1378-L1398 - * * @param string $payment_id Payment ID. - * * @return null */ public function get_payment_transaction_id( $payment_id ) { - return null; + $payment_id = null; + + return $payment_id; } }