You are here

public function Response::send in RESTful 7.2

Sends HTTP headers and content.

Overrides ResponseInterface::send

File

src/Http/Response.php, line 288
Contains \Drupal\restful\Http\Response.

Class

Response

Namespace

Drupal\restful\Http

Code

public function send() {
  $this
    ->sendHeaders();
  $this
    ->sendContent();
  static::pageFooter();
}