WC_Gateway_Paypal_IPN_Handler::payment_status_pending
Handle a pending payment.
Method of the class: WC_Gateway_Paypal_IPN_Handler{}
No Hooks.
Returns
null. Nothing (null).
Usage
// protected - for code of main (parent) or child class $result = $this->payment_status_pending( $order, $posted );
- $order(WC_Order) (required)
- Order object.
- $posted(array) (required)
- Posted data.
WC_Gateway_Paypal_IPN_Handler::payment_status_pending() WC Gateway Paypal IPN Handler::payment status pending code WC 10.4.3
protected function payment_status_pending( $order, $posted ) {
$this->payment_status_completed( $order, $posted );
}