Skip to content
Snippets Groups Projects
Pagination.php 237 B
Newer Older
Pavel's avatar
Pavel committed
<?php

namespace IQDEV\Search;

final class Pagination
{
    public int $limit;
    public int $page;

    public function __construct(int $limit, int $page = 1)
    {
        $this->limit = $limit;
        $this->page  = $page;
    }
}