From 5179e9d0fac5c1f7ea93b9c9b64498cfe8862692 Mon Sep 17 00:00:00 2001 From: Stig Bakken Date: Sun, 7 Apr 2002 12:40:51 +0000 Subject: [PATCH] * rename package-verify command to package-validate --- pear/PEAR/Command/Package.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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]"); -- 2.50.1