dbms_primeidc/extdbms/lib/Configs/Pagination.php
2025-04-24 16:55:28 +09:00

14 lines
263 B
PHP

<?php
namespace lib\Configs;
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);
}
}