/**
  * Call a method in this namespace.
  *
  * @param  string $methodName
  * @param  array $args
  * @return mixed
  */
 public function __call($methodName, $args)
 {
     return $this->_client->__call("{$this->_namespace}.{$methodName}", $args);
 }