Weather.php 224 B

1234567891011121314151617
  1. <?php
  2. namespace Heanup\Library\WeatherAdapt;
  3. interface Weather
  4. {
  5. /**
  6. * @param $city_id
  7. * @return mixed
  8. */
  9. public function getWeatherData($city_id);
  10. public function parseData($data1,$data2);
  11. }