/** * {@inheritdoc} */ public function __construct() { parent::__construct(); if ($this->getPosts()->isEmpty()) { $this->addPost(new Post()); } }
/** * @param Topic $topic * * @return Forum */ public function addTopic(Topic $topic) { $topic->setCategory($this); $this->topics->add($topic); return $this; }