request = $request; $this->post_id = $post_id; } /** * Gets the current request URI. * * @since 0.1.0 * * @return string */ public function get_request(): Request { return $this->request; } /** * Gets the current post ID. * * @since 0.1.0 * * @return int */ public function get_post_id(): int { return $this->post_id; } }