Horde_Service_Weather_Forecast_Base::limitLength PHP Method

limitLength() public method

Limit the returned number of forecast days. Used for emulating a smaller forecast length than the provider supports or for using one, longer request to supply two different forecast length requests.
public limitLength ( integer $days )
$days integer The number of days to return.
    public function limitLength($days)
    {
        $this->_maxDays = $days;
    }