]> granicus.if.org Git - php/commitdiff
* per-command fold marks
authorStig Bakken <ssb@php.net>
Thu, 28 Mar 2002 23:50:45 +0000 (23:50 +0000)
committerStig Bakken <ssb@php.net>
Thu, 28 Mar 2002 23:50:45 +0000 (23:50 +0000)
pear/PEAR/Command/Package.php

index d61c72091c322eb9862add42d7ff23e14561c935..5ce356ff6387c0652ab0f4c7789d6a3732e1a1a4 100644 (file)
@@ -52,6 +52,8 @@ class PEAR_Command_Package extends PEAR_Command_Common
     {
         $failmsg = '';
         switch ($command) {
+            // {{{ package
+
             case 'package': {
                 $pkginfofile = isset($params[0]) ? $params[0] : null;
                 ob_start();
@@ -73,6 +75,10 @@ class PEAR_Command_Package extends PEAR_Command_Common
                 }
                 break;
             }
+
+            // }}}
+            // {{{ package-list
+
             case 'package-list': {
                 include_once "PEAR/Common.php";
                 $obj = new PEAR_Common();
@@ -114,6 +120,10 @@ class PEAR_Command_Package extends PEAR_Command_Common
                 $this->ui->endTable();
                 break;
             }
+
+            // }}}
+            // {{{ package-info
+
             case 'package-info': {
                 include_once "PEAR/Common.php";
                 $obj = new PEAR_Common();
@@ -192,6 +202,8 @@ class PEAR_Command_Package extends PEAR_Command_Common
                 $this->ui->endTable();
                 break;
             }
+
+            // }}}
             default: {
                 return false;
             }