Cmfcmf\OpenWeatherMap\WeatherHistory::__construct PHP Метод

__construct() публичный Метод

public __construct ( $weatherHistory, $query )
    public function __construct($weatherHistory, $query)
    {
        if (isset($weatherHistory['list'][0]['city'])) {
            $country = $weatherHistory['list'][0]['city']['country'];
            $population = $weatherHistory['list'][0]['city']['population'];
        } else {
            $country = null;
            $population = null;
        }
        $this->city = new City($weatherHistory['city_id'], is_string($query) ? $query : null, isset($query['lon']) ? $query['lon'] : null, isset($query['lat']) ? $query['lat'] : null, $country, $population);
        $this->calctime = $weatherHistory['calctime'];
        $utctz = new \DateTimeZone('UTC');
        foreach ($weatherHistory['list'] as $history) {
            if (isset($history['rain'])) {
                $units = array_keys($history['rain']);
            } else {
                $units = array(0 => null);
            }
            $this->histories[] = new History($this->city, $history['weather'][0], array('now' => $history['main']['temp'], 'min' => $history['main']['temp_min'], 'max' => $history['main']['temp_max']), $history['main']['pressure'], $history['main']['humidity'], $history['clouds']['all'], isset($history['rain']) ? array('val' => $history['rain'][$units[0]], 'unit' => $units[0]) : null, $history['wind'], \DateTime::createFromFormat('U', $history['dt'], $utctz));
        }
    }