romanzipp / Laravel-Twitch

Twitch Helix API PHP Wrapper for Laravel
https://packagist.org/packages/romanzipp/laravel-twitch
MIT License
108 stars 18 forks source link

Get total followers count #108

Closed SnakeME closed 3 years ago

SnakeME commented 3 years ago

I'm trying to figure out how to get the total followers count.

I'm making this call: $result = $twitch->getUsersFollows(['to_id' => 23161357, 'first' => 1]);

How can I now get the total value the Twitch API is returning shown here: https://dev.twitch.tv/docs/api/reference#get-users-follows

SnakeME commented 3 years ago

Alright found it:

$result->getTotal()

Would be nice to add it to the manual maybe, because I guess this is a often used function.