ClientServiceInterface.php 181 B

123456789101112
  1. <?php
  2. namespace App\JsonRpc;
  3. interface ClientServiceInterface
  4. {
  5. /**
  6. * @param array $params
  7. * @return array
  8. */
  9. public function test(array $params): array;
  10. }