public function AbstractFeed::getDescription 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::getDescription()
Get the feed description
Return value
string|null
File
- vendor/
zendframework/ zend-feed/ src/ Writer/ AbstractFeed.php, line 607
Class
Namespace
Zend\Feed\WriterCode
public function getDescription() {
if (!array_key_exists('description', $this->data)) {
return;
}
return $this->data['description'];
}