Ejemplo n.º 1
0
 /**
  * Answer a new instance representing yesterday
  * 
  * @param optional string $class DO NOT USE OUTSIDE OF PACKAGE.
  *		This parameter is used to get around the limitations of not being
  *		able to find the class of the object that recieved the initial 
  *		method call.
  * @return object TimeStamp
  * @access public
  * @since 5/12/05
  * @static
  */
 static function yesterday($class = 'TimeStamp')
 {
     $obj = parent::yesterday($class);
     return $obj;
 }
Ejemplo n.º 2
0
 /**
  * Answer a new instance representing yesterday
  * 
  * @param optional string $class DO NOT USE OUTSIDE OF PACKAGE.
  *		This parameter is used to get around the limitations of not being
  *		able to find the class of the object that recieved the initial 
  *		method call.
  * @return object StorableTime
  * @access public
  * @since 5/12/05
  * @static
  */
 static function yesterday($class = 'StorableTime')
 {
     return parent::yesterday($class);
 }