You are here

public function Response::getResult in JSON-RPC 2.x

Same name and namespace in other branches
  1. 8 src/Object/Response.php \Drupal\jsonrpc\Object\Response::getResult()

Get the result of the response.

Return value

mixed The result of the response.

File

src/Object/Response.php, line 111

Class

Response
Response object to help implement JSON RPC's spec for response objects.

Namespace

Drupal\jsonrpc\Object

Code

public function getResult() {
  return $this->result;
}