* add folds

This commit is contained in:
Stig Bakken 2002-11-10 02:44:49 +00:00
parent cd72343bb3
commit ee0ad3c81a

View File

@ -47,6 +47,9 @@ class PEAR_Remote extends PEAR
}
// }}}
// {{{ getCache()
function getCache($args)
{
@ -66,7 +69,11 @@ class PEAR_Remote extends PEAR
);
return $result;
}
// }}}
// {{{ saveCache()
function saveCache($args, $data)
{
$id = md5(serialize($args));
@ -82,6 +89,8 @@ class PEAR_Remote extends PEAR
fclose($fp);
};
}
// }}}
// {{{ call(method, [args...])