PublicRpcServiceInterface.php 163 B

123456789101112
  1. <?php
  2. namespace App\JsonRpc;
  3. interface PublicRpcServiceInterface
  4. {
  5. /**
  6. * @param array $data
  7. */
  8. public function getDistrictList(array $data);
  9. }