Newscoop\Entity\Article::getArticleAuthors PHP Method

getArticleAuthors() public method

Get articleAuthors.
public getArticleAuthors ( ) : object
return object
    public function getArticleAuthors()
    {
        if (!$this->articleAuthors) {
            $this->articleAuthors = $this->authors;
        }
        return $this->articleAuthors;
    }

Usage Example

 public function getArticleAuthors()
 {
     $this->__load();
     return parent::getArticleAuthors();
 }