Skip to content
Snippets Groups Projects
Pagination.php 256 B
Newer Older
Nikita Chernykh's avatar
Nikita Chernykh committed
<?php

namespace IQDEV\ElasticSearch;

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

    public function __construct(int $limit = 20, int $offset = 0)
    {
        $this->limit = $limit;
        $this->offset = $offset;
    }
}