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