public function Deleted::getComment in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/zendframework/zend-feed/src/Writer/Deleted.php \Zend\Feed\Writer\Deleted::getComment()
Return value
string
File
- vendor/
zendframework/ zend-feed/ src/ Writer/ Deleted.php, line 229
Class
Namespace
Zend\Feed\WriterCode
public function getComment() {
if (!array_key_exists('comment', $this->data)) {
return;
}
return $this->data['comment'];
}