Skip to content
Snippets Groups Projects
Commit f1603539 authored by Angie Byron's avatar Angie Byron
Browse files

Issue #1421330 by heyrocker: Fixed Add @see for cache_set() and cache_get() .

parent f8a051b1
No related branches found
No related tags found
No related merge requests found
......@@ -49,6 +49,8 @@ function _cache_get_object($bin) {
*
* @return
* The cache or FALSE on failure.
*
* @see cache_set()
*/
function cache_get($cid, $bin = 'cache') {
return _cache_get_object($bin)->get($cid);
......@@ -138,6 +140,8 @@ function cache_get_multiple(array &$cids, $bin = 'cache') {
* general cache wipe.
* - A Unix timestamp: Indicates that the item should be kept at least until
* the given time, after which it behaves like CACHE_TEMPORARY.
*
* @see cache_get()
*/
function cache_set($cid, $data, $bin = 'cache', $expire = CACHE_PERMANENT) {
return _cache_get_object($bin)->set($cid, $data, $expire);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment