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.

File

core/modules/jsonapi/src/ResourceResponse.php, line 42

Class

ResourceResponse
Contains data for serialization before sending the response.

Namespace

Drupal\jsonapi

Code

public function __construct($data = NULL, $status = 200, array $headers = []) {
  $this->responseData = $data;
  parent::__construct('', $status, $headers);
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.