WC_Report_Customer_List::__constructpublicWC 1.0

Constructor.

Method of the class: WC_Report_Customer_List{}

No Hooks.

Returns

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 10.4.3

public function __construct() {

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