page = $page; $this->rev = $rev; $this->name = $name; $this->id = $id; $this->type = $type; $this->parent = $parent; $this->transcludedFrom = $transcludedFrom; $this->level = $level; } /** * @return ProperPageIdentity */ public function getPage(): ProperPageIdentity { return $this->page; } /** * @return RevisionRecord */ public function getRevision(): RevisionRecord { return $this->rev; } /** * @inheritDoc */ public function getName(): string { return $this->name; } /** * @param DatabaseThreadItem $reply Reply comment */ public function addReply( DatabaseThreadItem $reply ): void { $this->replies[] = $reply; } /** * @inheritDoc */ public function getId(): string { return $this->id; } /** * @inheritDoc */ public function getType(): string { return $this->type; } /** * @inheritDoc * @return DatabaseThreadItem|null */ public function getParent(): ?ThreadItem { return $this->parent; } /** * @inheritDoc * @return DatabaseThreadItem[] */ public function getReplies(): array { return $this->replies; } /** * @inheritDoc */ public function getTranscludedFrom() { return $this->transcludedFrom; } /** * @inheritDoc */ public function getLevel(): int { return $this->level; } }