Getting next page from PHP SDK

When using the PHP sdk to get something like say

$ifs->contacts()->get()

How can I get the next page for the results? The documentation is severely lacking on this.

The PHP SDK doesn’t have built in paging support yet. You have to manually page via where.

$ifs->contacts()->where('offset', $offset)->where('limit',$limit)->get()