Automattic\WooCommerce\Admin\Overrides
OrderRefund::is_returning_customer
Returns null since refunds should not be counted towards returning customer counts.
Method of the class: OrderRefund{}
No Hooks.
Returns
null. Nothing (null).
Usage
$OrderRefund = new OrderRefund(); $OrderRefund->is_returning_customer();
OrderRefund::is_returning_customer() OrderRefund::is returning customer code WC 10.8.1
public function is_returning_customer() {
return null;
}