public function AbstractCallback::sendResponse in Zircon Profile 8.0
Same name and namespace in other branches
- 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
Namespace
Zend\Feed\PubSubHubbubCode
public function sendResponse() {
$this
->getHttpResponse()
->send();
}