WC_Report_Sales_By_Date::get_report_data()publicWC 1.0

Get report data.

Method of the class: WC_Report_Sales_By_Date{}

No Hooks.

Return

stdClass.

Usage

$WC_Report_Sales_By_Date = new WC_Report_Sales_By_Date();
$WC_Report_Sales_By_Date->get_report_data();

WC_Report_Sales_By_Date::get_report_data() code WC 8.6.1

public function get_report_data() {
	if ( empty( $this->report_data ) ) {
		$this->query_report_data();
	}
	return $this->report_data;
}