9 lines
160 B
PHP
9 lines
160 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
declare(strict_types=1);
|
||
|
|
|
||
|
|
return [
|
||
|
|
'api_url' => env('POOL_API_URL', 'http://127.0.0.1:2117'),
|
||
|
|
'cache_ttl' => (int) env('POOL_CACHE_TTL', 15),
|
||
|
|
];
|