WC_Customer_Download_Log_Data_Store::get_download_log()privateWC 1.0

Get a download log object.

Method of the class: WC_Customer_Download_Log_Data_Store{}

No Hooks.

Return

WC_Customer_Download_Log.

Usage

// private - for code of main (parent) class only
$result = $this->get_download_log( $data );
$data(array) (required)
From the DB.

WC_Customer_Download_Log_Data_Store::get_download_log() code WC 8.7.0

private function get_download_log( $data ) {
	return new WC_Customer_Download_Log( $data );
}