Newscoop\Entity\Article::author PHP Method

author() public method

Author article.
public author ( string $title, array $fields )
$title string
$fields array
    public function author($title, array $fields)
    {
        $this->name = (string) $title;
        foreach ($fields as $key => $val) {
            $this->setFieldValue($key, $val);
        }
    }