ClientServiceInterface.php 162 B

123456789
  1. <?php
  2. namespace App\JsonRpc;
  3. interface ClientServiceInterface
  4. {
  5. public function test(array $params): array;
  6. public function indexData(array $params);
  7. }