ClientServiceInterface.php 149 B

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