LazyRecord\CollectionPager::calculate PHP Method

calculate() public method

public calculate ( )
    public function calculate()
    {
        $this->startFrom = $this->getOffset();
        $this->totalPages = ($c = count($this->dataArray)) > 0 ? ceil($c / $this->perPage) : 1;
    }