From: Stig Bakken Date: Sun, 7 Apr 2002 12:40:51 +0000 (+0000) Subject: * rename package-verify command to package-validate X-Git-Tag: php-4.3.0dev-ZendEngine2-Preview1~828 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5179e9d0fac5c1f7ea93b9c9b64498cfe8862692;p=php * rename package-verify command to package-validate --- diff --git a/pear/PEAR/Command/Package.php b/pear/PEAR/Command/Package.php index 54a144698c..2ba266e918 100644 --- a/pear/PEAR/Command/Package.php +++ b/pear/PEAR/Command/Package.php @@ -50,7 +50,7 @@ class PEAR_Command_Package extends PEAR_Command_Common return array('package', 'package-info', 'package-list', - 'package-verify'); + 'package-validate'); } // }}} @@ -70,7 +70,7 @@ class PEAR_Command_Package extends PEAR_Command_Common case 'packge-info': return array('', 'Shows information about a PEAR package'); - case 'package-verify': + case 'package-validate': return array('', 'Verifies a package or description file'); } @@ -262,9 +262,9 @@ class PEAR_Command_Package extends PEAR_Command_Common } // }}} - // {{{ package-verify + // {{{ package-validate - case 'package-verify': { + case 'package-validate': { if (sizeof($params) < 1) { $help = $this->getHelp($command); return $this->raiseError("$command: missing parameter: $help[0]");