public function Entry::addAuthors in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/zendframework/zend-feed/src/Writer/Entry.php \Zend\Feed\Writer\Entry::addAuthors()
Set an array with feed authors
Parameters
array $authors:
Return value
See also
addAuthor
File
- vendor/
zendframework/ zend-feed/ src/ Writer/ Entry.php, line 102
Class
Namespace
Zend\Feed\WriterCode
public function addAuthors(array $authors) {
foreach ($authors as $author) {
$this
->addAuthor($author);
}
return $this;
}