App_JsonRpc_AdServiceInterface.rpc-client.proxy.php 582 B

123456789101112131415161718192021222324
  1. <?php
  2. namespace App\JsonRpc;
  3. class AdServiceInterface_06c6ccc8c35b7d6815ecfd35993eb82d extends \Hyperf\RpcClient\Proxy\AbstractProxyService implements AdServiceInterface
  4. {
  5. /**
  6. * @param string $name
  7. * @param string $url
  8. * @return string
  9. */
  10. public function createAd(string $name, string $url)
  11. {
  12. return $this->client->__call(__FUNCTION__, func_get_args());
  13. }
  14. /**
  15. * @param int $id
  16. * @return array
  17. */
  18. public function getAdInfo(int $id)
  19. {
  20. return $this->client->__call(__FUNCTION__, func_get_args());
  21. }
  22. }