Files
speedtest-tracker/config/json-api-paginate.php
T

18 lines
334 B
PHP

<?php
return [
/*
* The maximum number of results that will be returned
* when using the JSON API paginator.
*/
'max_results' => env('API_MAX_RESULTS', 500),
/*
* The default number of results that will be returned
* when using the JSON API paginator.
*/
'default_size' => 25,
];