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
1 2 3 4 | public function __construct( $data = NULL, $status = 200, $headers = array ()) { $this ->responseData = $data ; parent::__construct( '' , $status , $headers ); } |
Please login to continue.