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