City.php 403 B

1234567891011121314151617181920212223242526
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: chendeben
  5. * Date: 2018/9/23
  6. * Time: 下午4:59
  7. */
  8. namespace PhpLife\App\Api\Controller\Weather;
  9. use PhpLife\App\Api\Controller;
  10. class City extends Controller
  11. {
  12. /**
  13. * 执行逻辑
  14. * @return mixed
  15. */
  16. protected function main()
  17. {
  18. $city=\PhpLife\App\Api\Config\City::getData();
  19. $this->output(0,'OK',$city);
  20. }
  21. }