You are here

public function Rss::getDateCreated in Zircon Profile 8

Same name in this branch
  1. 8 vendor/zendframework/zend-feed/src/Reader/Entry/Rss.php \Zend\Feed\Reader\Entry\Rss::getDateCreated()
  2. 8 vendor/zendframework/zend-feed/src/Reader/Feed/Rss.php \Zend\Feed\Reader\Feed\Rss::getDateCreated()
Same name and namespace in other branches
  1. 8.0 vendor/zendframework/zend-feed/src/Reader/Entry/Rss.php \Zend\Feed\Reader\Entry\Rss::getDateCreated()

Get the entry's date of creation

Return value

string

Overrides EntryInterface::getDateCreated

File

vendor/zendframework/zend-feed/src/Reader/Entry/Rss.php, line 172

Class

Rss

Namespace

Zend\Feed\Reader\Entry

Code

public function getDateCreated() {
  return $this
    ->getDateModified();
}