public function AbstractFeed::getHubs in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/zendframework/zend-feed/src/Writer/AbstractFeed.php \Zend\Feed\Writer\AbstractFeed::getHubs()
Get the URLs used as Pubsubhubbub hubs endpoints
Return value
string|null
File
- vendor/
zendframework/ zend-feed/ src/ Writer/ AbstractFeed.php, line 737
Class
Namespace
Zend\Feed\WriterCode
public function getHubs() {
if (!array_key_exists('hubs', $this->data)) {
return;
}
return $this->data['hubs'];
}