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