Example #1
0
 /** {@inheritdoc} */
 public function call($methodName, array $arguments = [])
 {
     return $this->wrapped->call($methodName, $arguments);
 }
Example #2
0
 /**
  * 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);
 }