- Fixed KEYS format for header manipulation in .env
This commit is contained in:
parent
946281c884
commit
58285753ed
|
@ -10,12 +10,7 @@ return [
|
|||
],
|
||||
|
||||
'keys' => (function() {
|
||||
foreach(explode(',', getenv('KEYS') ?? "") as $item) {
|
||||
list($var, $value) = explode(":", trim($item));
|
||||
$list[$var] = $value;
|
||||
}
|
||||
|
||||
return $list;
|
||||
return explode(',', getenv('KEYS') ?? "") ;
|
||||
})(),
|
||||
|
||||
'meta' => [
|
||||
|
|
Loading…
Reference in New Issue