]> granicus.if.org Git - php/commitdiff
* add folds
authorStig Bakken <ssb@php.net>
Sun, 10 Nov 2002 02:44:49 +0000 (02:44 +0000)
committerStig Bakken <ssb@php.net>
Sun, 10 Nov 2002 02:44:49 +0000 (02:44 +0000)
pear/PEAR/Remote.php

index 43577aad52b7c4a74bd12f7f5381ec7216ef0e9c..5662e9de0126263a24cf8fb4babd8c41dc4e0670 100644 (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...])