You are here

public function AbstractCallback::sendResponse in Zircon Profile 8.0

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

Send the response, including all headers. If you wish to handle this via Zend\Http, use the getter methods to retrieve any data needed to be set on your HTTP Response object, or simply give this object the HTTP Response instance to work with for you!

Return value

void

Overrides CallbackInterface::sendResponse

File

vendor/zendframework/zend-feed/src/PubSubHubbub/AbstractCallback.php, line 93

Class

AbstractCallback

Namespace

Zend\Feed\PubSubHubbub

Code

public function sendResponse() {
  $this
    ->getHttpResponse()
    ->send();
}