") */ private $comments; public function __construct() { $this->authors = new AuthorList(); $this->authors->add(new Author('Johannes Schmitt')); $this->authors->add(new Author('John Doe')); $author = new Author('Foo Bar'); $this->comments = []; $this->comments[] = new Comment($author, 'foo'); $this->comments[] = new Comment($author, 'bar'); $this->comments[] = new Comment($author, 'baz'); } }