public function Callback::setFeedUpdate in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/zendframework/zend-feed/src/PubSubHubbub/Subscriber/Callback.php \Zend\Feed\PubSubHubbub\Subscriber\Callback::setFeedUpdate()
Sets a newly received feed (Atom/RSS) sent by a Hub as an update to a Topic we've subscribed to.
Parameters
string $feed:
Return value
\Zend\Feed\PubSubHubbub\Subscriber\Callback
1 call to Callback::setFeedUpdate()
- Callback::handle in vendor/
zendframework/ zend-feed/ src/ PubSubHubbub/ Subscriber/ Callback.php - Handle any callback from a Hub Server responding to a subscription or unsubscription request. This should be the Hub Server confirming the the request prior to taking action on it.
File
- vendor/
zendframework/ zend-feed/ src/ PubSubHubbub/ Subscriber/ Callback.php, line 185
Class
Namespace
Zend\Feed\PubSubHubbub\SubscriberCode
public function setFeedUpdate($feed) {
$this->feedUpdate = $feed;
return $this;
}