WoohooLabs\Yin\JsonApi\Request\Pagination\OffsetBasedPagination::__construct PHP 메소드

__construct() 공개 메소드

public __construct ( integer | null $offset, integer | null $limit )
$offset integer | null
$limit integer | null
    public function __construct($offset, $limit)
    {
        $this->offset = $offset;
        $this->limit = $limit;
    }