dbms_primeidc/extdbms/lib/Utils/Pagination.php
2025-04-23 19:28:58 +09:00

14 lines
261 B
PHP

<?php
namespace lib\Utils;
use lib\Core\Utils\Pagination as Core;
class Pagination extends Core
{
public function __construct(int $totalItems, int $currentPage = 1, int $perPage = 10)
{
parent::__construct($totalItems, $currentPage, $perPage);
}
}