mirror of
https://github.com/alexjustesen/speedtest-tracker.git
synced 2026-06-23 04:10:25 +00:00
18 lines
334 B
PHP
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,
|
|
|
|
];
|