- Fixed KEYS format for header manipulation in .env

This commit is contained in:
Dave M. 2023-03-30 18:26:17 +00:00
parent 946281c884
commit 58285753ed
1 changed files with 1 additions and 6 deletions

View File

@ -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' => [