public function ResourceResponse::__construct

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

drupal/core/modules/rest/lib/Drupal/rest/ResourceResponse.php, line 34
Definition of Drupal\rest\ResourceResponse.

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);
}