Ejemplo n.º 1
0
 public function __construct(TRpcServer $rpcServer)
 {
     parent::__construct();
     $this->rpcServer = $rpcServer;
     foreach ($this->registerMethods() as $_methodName => $_methodDetails) {
         $this->rpcServer->addRpcMethod($_methodName, $_methodDetails);
     }
 }