]> granicus.if.org Git - php/commitdiff
* The argument of displayError() is a PEAR_Error instance.
authorMartin Jansen <mj@php.net>
Fri, 6 Jun 2003 16:09:01 +0000 (16:09 +0000)
committerMartin Jansen <mj@php.net>
Fri, 6 Jun 2003 16:09:01 +0000 (16:09 +0000)
# Bug: 23932

pear/PEAR/Frontend/CLI.php

index ba30702813dc64f46245385c031b518172f11aea..a42b61fb9c818f5c28c8ffe2d727dfcdcae22a3f 100644 (file)
@@ -91,6 +91,9 @@ class PEAR_Frontend_CLI extends PEAR
     // }}}
     // {{{ displayError(eobj)
 
+    /**
+     * @param object PEAR_Error object
+     */
     function displayError($eobj)
     {
         return $this->_displayLine($eobj->getMessage());
@@ -99,6 +102,9 @@ class PEAR_Frontend_CLI extends PEAR
     // }}}
     // {{{ displayFatalError(eobj)
 
+    /**
+     * @param object PEAR_Error object
+     */
     function displayFatalError($eobj)
     {
         $this->displayError($eobj);