You are here

public function Atom::getAuthor in Zircon Profile 8

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

Get a single author

Parameters

int $index:

Return value

string|null

Overrides FeedInterface::getAuthor

File

vendor/zendframework/zend-feed/src/Reader/Feed/Atom.php, line 53

Class

Atom

Namespace

Zend\Feed\Reader\Feed

Code

public function getAuthor($index = 0) {
  $authors = $this
    ->getAuthors();
  if (isset($authors[$index])) {
    return $authors[$index];
  }
  return;
}