/**
  * 
  * @param array $options
  * 
  * @return Current
  */
 public function getWeather($options = array())
 {
     return parent::query($options);
 }
 /**
  * Return an instance of WeatherData
  *
  * Accepted options are:
  *
  * - mode
  * - language
  * - units
  * - apiKey
  * - query|id|latitude & longitude
  * - count (<= 14)
  *
  * @param array $options
  *
  * @return WeatherData
  */
 public function getDaily($options = array())
 {
     return parent::query($options);
 }
 /**
  * Return an instance of WeatherData
  * 
  * @param array $options
  * 
  * @return WeatherData
  */
 public function getForecast($options = array())
 {
     return parent::query($options);
 }