commentId = $commentId; $this->wp = $wp; } public function getCommentId(): int { return $this->commentId; } public function getComment(): ?\WP_Comment { $comment = $this->wp->getComment($this->commentId); return $comment instanceof \WP_Comment ? $comment : null; } }