[ticket/10875] Add comment about cache's sql_load() method.

PHPBB3-10875
This commit is contained in:
Andreas Fischer 2012-10-31 18:14:24 -04:00
parent 4e83cd461c
commit 969369254f

View file

@ -69,6 +69,12 @@ interface phpbb_cache_driver_interface
/**
* Load cached sql query
*
* @param string $query SQL query
*
* @return int|bool Query ID (integer) if cache contains a rowset
* for the specified query.
* False otherwise.
*/
public function sql_load($query);