This commit is contained in:
Adrien Foulon 2019-03-14 23:18:47 +01:00 committed by GitHub
parent 7a470fb117
commit d53d6f6a7d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 4 deletions

View File

@ -386,7 +386,7 @@ class WC_Admin_Report {
/**
* Get the cached query result or null if it's not in the cache.
*
* @param string $query_hash
* @param string $query_hash The query hash.
*
* @return mixed
*/
@ -405,10 +405,10 @@ class WC_Admin_Report {
}
/**
* Set the cached query result
* Set the cached query result.
*
* @param string $query_hash
* @param mixed $data
* @param string $query_hash The query hash.
* @param mixed $data The data to cache.
*/
protected function set_cached_query( $query_hash, $data ) {
$class = strtolower( get_class( $this ) );