예제 #1
0
 /** {@inheritdoc} */
 public function call($methodName, array $arguments = [])
 {
     return $this->wrapped->call($methodName, $arguments);
 }
예제 #2
0
파일: Proxy.php 프로젝트: lstrojny/fxmlrpc
 /**
  * Invokes remote command
  *
  * @param  string $method
  * @param  array  $parameters
  * @return mixed
  */
 public function __call($method, array $parameters)
 {
     return $this->client->call($this->prependNamespace($method), $parameters);
 }