WC_Report_Customer_List::no_items()publicWC 1.0

No items found text.

Method of the class: WC_Report_Customer_List{}

No Hooks.

Return

null. Nothing (null).

Usage

$WC_Report_Customer_List = new WC_Report_Customer_List();
$WC_Report_Customer_List->no_items();

WC_Report_Customer_List::no_items() code WC 8.6.1

public function no_items() {
	esc_html_e( 'No customers found.', 'woocommerce' );
}