id = $id; } /** * @return User[] */ public function getReaders() { return $this->readers; } /** * @param User[] $readers * @return User */ public function setReaders($readers) { $this->readers = $readers; return $this; } /** * @return User[] */ public function getAuthors() { return $this->authors; } /** * @param User[] $authors * @return User */ public function setAuthors($authors) { $this->authors = $authors; return $this; } }