request->getQuery('page', 'int', 1); } public function getSkipRowsNumber(int $rowsPerPage): int { return ($this->getCurrentPage() - 1) * $rowsPerPage; } public function getTotalPages(int $rowsTotal, int $rowsPerPage): int { return (int) ceil($rowsTotal / $rowsPerPage); } }