You are here

public function HttpResponse::send in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/zendframework/zend-feed/src/PubSubHubbub/HttpResponse.php \Zend\Feed\PubSubHubbub\HttpResponse::send()

Send the response, including all headers

Return value

void

File

vendor/zendframework/zend-feed/src/PubSubHubbub/HttpResponse.php, line 40

Class

HttpResponse

Namespace

Zend\Feed\PubSubHubbub

Code

public function send() {
  $this
    ->sendHeaders();
  echo $this
    ->getContent();
}