加密后的代码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

RpcService.php 260B

1234567891011121314151617
  1. <?php
  2. namespace App\Api;
  3. use App\Config\YlyConfig;
  4. use App\Protocol\YlyRpcClient;
  5. class RpcService{
  6. protected $client;
  7. public function __construct($token, YlyConfig $config)
  8. {
  9. $this->client = new YlyRpcClient($token, $config);
  10. }
  11. }