diff --git a/doc/result_pager.md b/doc/result_pager.md index 1147674edcc..3eb0a115f5f 100644 --- a/doc/result_pager.md +++ b/doc/result_pager.md @@ -21,6 +21,12 @@ Parameters of the `fetchAll` method: * The method of the API object you're using * The parameters of the method +Parameters are passed to the API method via [call_user_func_array](https://www.php.net/manual/en/function.call-user-func-array.php). + +```php +$parameters = array('github', 'all', 1); // $organization, $type, $page +``` + #### Get the first page ```php