WC_Report_Customer_List::__construct()publicWC 1.0

Constructor.

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->__construct();

WC_Report_Customer_List::__construct() code WC 8.7.0

public function __construct() {

	parent::__construct(
		array(
			'singular' => 'customer',
			'plural'   => 'customers',
			'ajax'     => false,
		)
	);
}