Automattic\WooCommerce\Admin\Overrides

OrderRefund::is_returning_customer()publicWC 1.0

Returns null since refunds should not be counted towards returning customer counts.

Method of the class: OrderRefund{}

No Hooks.

Return

null. Nothing (null).

Usage

$OrderRefund = new OrderRefund();
$OrderRefund->is_returning_customer();

OrderRefund::is_returning_customer() code WC 8.7.0

public function is_returning_customer() {
	return null;
}