From: Stig Bakken Date: Sun, 10 Nov 2002 02:44:49 +0000 (+0000) Subject: * add folds X-Git-Tag: php-4.3.0RC1~160 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ee0ad3c81a5531500905f56f5666bcb61a4d53b1;p=php * add folds --- diff --git a/pear/PEAR/Remote.php b/pear/PEAR/Remote.php index 43577aad52..5662e9de01 100644 --- a/pear/PEAR/Remote.php +++ b/pear/PEAR/Remote.php @@ -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...])