ResourceResponse::__construct

public ResourceResponse::__construct($data = NULL, $status = 200, $headers = array())

Constructor for ResourceResponse objects.

Parameters

mixed $data: Response data that should be serialized.

int $status: The response status code.

array $headers: An array of response headers.

Overrides Response::__construct

File

core/modules/rest/src/ResourceResponse.php, line 34

Class

ResourceResponse
Contains data for serialization before sending the response.

Namespace

Drupal\rest

Code

public function __construct($data = NULL, $status = 200, $headers = array()) {
  $this->responseData = $data;
  parent::__construct('', $status, $headers);
}
doc_Drupal
2016-10-29 09:37:50
Comments
Leave a Comment

Please login to continue.