mirror of
https://github.com/shlinkio/shlink.git
synced 2024-11-27 16:26:37 +03:00
20 lines
399 B
PHP
20 lines
399 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use function Shlinkio\Shlink\Common\env;
|
|
|
|
return (static function (): array {
|
|
$redisServers = env('REDIS_SERVERS');
|
|
|
|
return match (true) {
|
|
$redisServers === null => [],
|
|
default => [
|
|
'cache' => [
|
|
'redis' => [
|
|
'servers' => $redisServers,
|
|
],
|
|
],
|
|
],
|
|
};
|
|
})();
|