public function Response::setResultSchema in JSON-RPC 2.x
Same name and namespace in other branches
- 8 src/Object/Response.php \Drupal\jsonrpc\Object\Response::setResultSchema()
Sets the schema for the output response.
Parameters
array|null $result_schema: The schema of the result.
File
- src/
Object/ Response.php, line 170
Class
- Response
- Response object to help implement JSON RPC's spec for response objects.
Namespace
Drupal\jsonrpc\ObjectCode
public function setResultSchema($result_schema) {
$this->resultSchema = $result_schema;
}