You are here

public function SearchApiServer::__call in Search API 7

Reacts to calls of undefined methods on this object.

If the service class defines additional methods, not specified in the SearchApiServiceInterface interface, then they are called via this magic method.

File

includes/server_entity.inc, line 150
Contains SearchApiServer.

Class

SearchApiServer
Class representing a search server.

Code

public function __call($name, $arguments = array()) {
  $this
    ->ensureProxy();
  return call_user_func_array(array(
    $this->proxy,
    $name,
  ), $arguments);
}