Porpaginas\Pager::__construct PHP Метод

__construct() публичный Метод

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