diff options
| author | Stig Bakken <ssb@php.net> | 2002-11-10 02:44:49 +0000 |
|---|---|---|
| committer | Stig Bakken <ssb@php.net> | 2002-11-10 02:44:49 +0000 |
| commit | ee0ad3c81a5531500905f56f5666bcb61a4d53b1 (patch) | |
| tree | 22c1bac4c36c331eb492515cbe6cfcb520cd630a /pear | |
| parent | cd72343bb39659f42e09547e90bcd06938e46449 (diff) | |
| download | php-git-ee0ad3c81a5531500905f56f5666bcb61a4d53b1.tar.gz | |
* add folds
Diffstat (limited to 'pear')
| -rw-r--r-- | pear/PEAR/Remote.php | 9 |
1 files changed, 9 insertions, 0 deletions
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...]) |
