Example #1
0
 /**
  * Get weather report for the provided $city name
  *
  * @param $city
  * @param string $country
  * @param string $unit
  * @return Response
  * @throws RequestException
  */
 public function getByCityName($city, $country = 'us', $unit = 'imperial')
 {
     $params = array('q' => $city . ',' . $country, 'units' => $unit);
     return $this->requester->makeRequest($params);
 }