Beispiel #1
0
 /**
  * Answer a new object with the value zero
  * 
  * @param optional string $class The class to instantiate. Do NOT use outside 
  *		of this package.
  * @return object Integer
  * @access public
  * @static
  * @since 7/14/05
  */
 static function zero($class = 'Integer')
 {
     return parent::zero($class);
 }
Beispiel #2
0
 /**
  * Answer a new object with the value zero
  * 
  * @param optional string $class The class to instantiate. Do NOT use outside 
  *		of this package.
  * @return object Float
  * @access public
  * @since 7/14/05
  * @static
  */
 static function zero($class = 'Float')
 {
     return parent::zero($class);
 }