id = (int)$id; $this->description = (string)$description; $this->icon = (string)$icon; } /** * Get the weather description. * * @return string */ public function __toString() { return $this->description; } /** * Get the icon url. * * @return string The icon url. */ public function getIconUrl() { return str_replace("%s", $this->icon, $this->iconUrl); } }