page = $page; $this->page_size = $page_size; $this->post_type = $post_type; } /** * Gets the current page. * * @return int */ public function get_page(): int { return $this->page; } /** * Gets the page size. * * @return int */ public function get_page_size(): int { return $this->page_size; } /** * Gets the post type. * * @return string */ public function get_post_type(): string { return $this->post_type; } }