Porpaginas\Pager::__construct PHP Method

__construct() public method

public __construct ( $totalCount, $limit, $currentPage )
    public function __construct($totalCount, $limit, $currentPage)
    {
        $this->totalCount = $totalCount;
        $this->limit = $limit;
        $this->currentPage = max(1, $currentPage);
    }