DistrictServiceInterface.php 308 B

12345678910111213141516171819
  1. <?php
  2. namespace App\JsonRpc;
  3. interface DistrictServiceInterface
  4. {
  5. /**
  6. * @param int $id
  7. * @return array
  8. */
  9. public function getDistrictInfo(int $id);
  10. /**
  11. * @param string $keyword
  12. * @param int $pid
  13. */
  14. public function getDistrictList(string $keyword,int $pid);
  15. }