/** * Answer a new instance starting at noon local time. * * @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/3/05 * @static */ static function noon($class = 'TimeStamp') { $obj = parent::noon($class); return $obj; }
/** * Answer a new instance starting at noon local time. * * @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/3/05 * @static */ static function noon($class = 'StorableTime') { return parent::noon($class); }