phpgroupware-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Phpgroupware-cvs] pbwebmaui/inc/pb.WebMAUI/lib/PEAR.php, 1.2


From: nomail
Subject: [Phpgroupware-cvs] pbwebmaui/inc/pb.WebMAUI/lib/PEAR.php, 1.2
Date: Thu, 20 May 2004 18:22:06 -0000

Update of /pbwebmaui/inc/pb.WebMAUI/lib
Modified Files:
        Branch: 
          PEAR.php

date: 2004/04/22 07:19:46;  author: powerstat;  state: Exp;  lines: +27 -1

Log Message:
fixed phpdoc comments
=====================================================================
No syntax errors detected in -
=====================================================================
Index: pbwebmaui/inc/pb.WebMAUI/lib/PEAR.php
diff -u pbwebmaui/inc/pb.WebMAUI/lib/PEAR.php:1.1 
pbwebmaui/inc/pb.WebMAUI/lib/PEAR.php:1.2
--- pbwebmaui/inc/pb.WebMAUI/lib/PEAR.php:1.1   Wed Mar 31 08:27:37 2004
+++ pbwebmaui/inc/pb.WebMAUI/lib/PEAR.php       Thu Apr 22 07:19:46 2004
@@ -1,4 +1,12 @@
 <?php
+/**
+ * Base class for other PEAR classes.  Provides rudimentary
+ * emulation of destructors.
+ *
+ * @author Stig Bakken <address@hidden>
+ * @see http://pear.php.net/manual/
+ * @package PEAR
+ */
 //
 // +----------------------------------------------------------------------+
 // | PEAR, the PHP Extension and Application Repository                   |
@@ -21,6 +29,9 @@
 // $Id$
 //
 
+/**
+ * PEAR ERROR RETURN CODE
+ */
 define('PEAR_ERROR_RETURN',     1);
 define('PEAR_ERROR_PRINT',      2);
 define('PEAR_ERROR_TRIGGER',    4);
@@ -35,8 +46,17 @@
     define('OS_UNIX',    false);
     define('PEAR_OS',    'Windows');
 } else {
+       /**
+       * @ignore
+       */
     define('OS_WINDOWS', false);
+       /**
+       * @ignore
+       */
     define('OS_UNIX',    true);
+       /**
+       * @ignore
+       */
     define('PEAR_OS',    'Unix'); // blatant assumption
 }
 
@@ -68,6 +88,7 @@
  * @since PHP 4.0.2
  * @author Stig Bakken <address@hidden>
  * @see http://pear.php.net/manual/
+ * @package PEAR
  */
 class PEAR
 {
@@ -680,6 +701,11 @@
 
 // }}}
 
+/**
+ * PEAR error class
+ *
+ * @package PEAR
+ */
 class PEAR_Error
 {
     // {{{ properties




reply via email to

[Prev in Thread] Current Thread [Next in Thread]