postId = $postId; $this->wp = $wp; } public function getPostId(): int { return $this->postId; } public function getPost(): ?\WP_Post { $post = $this->wp->getPost($this->postId); return $post instanceof \WP_Post ? $post : null; } }