<?php
namespace Illuminate\Pagination;
use Closure;
use Illuminate\Contracts\Support\Htmlable;
use Illuminate\Support\Arr;
use Illuminate\Support\Collection;
use Illuminate\Support\Traits\ForwardsCalls;
use Illuminate\Support\Traits\Tappable;
use Stringable;
use Traversable;
abstract class AbstractPaginator implements Htmlable, Stringable
{
use ForwardsCalls, Tappable;
protected $items;
protected $perPage;
protected $currentPage;