src/AppSearch/Schema/MetaPagePage.php [25:36]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
	public int $current;
	public int $total_pages;
	public int $total_results;
	public int $size;


	public function __construct(int $current, int $total_pages, int $total_results, int $size)
	{
		$this->current = $current;
		$this->total_pages = $total_pages;
		$this->total_results = $total_results;
		$this->size = $size;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/EnterpriseSearch/Schema/Page.php [24:35]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
	public int $current;
	public int $total_pages;
	public int $total_results;
	public int $size;


	public function __construct(int $current, int $total_pages, int $total_results, int $size)
	{
		$this->current = $current;
		$this->total_pages = $total_pages;
		$this->total_results = $total_results;
		$this->size = $size;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



