zendesk / zendesk_api_client_php

Official Zendesk API v2 client library for PHP
336 stars 259 forks source link

Pagination Iterator with params #516

Closed ecoologic closed 11 months ago

ecoologic commented 11 months ago

It's now possible to call the iterator with params as such:

$it = $client->tickets()->iterator(['extra' => 'params']);

foreach ($it as $i) {
    process($i); // Your implementation
}

I will update the README in the next card, as I'll probably start the upgrade guide then too.