LazyRecord\CollectionPager::calculate PHP Méthode

calculate() public méthode

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