fix: dont be case-sensitive on env vars (#3475)

This commit is contained in:
Dag 2023-07-02 06:47:21 +02:00 committed by GitHub
parent 748fc9fd65
commit bf73372d7f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -130,6 +130,7 @@ final class Configuration
// Recombine the key if it had multiple underscores
$key = implode('_', array_slice($nameParts, 2));
$key = strtolower($key);
// Handle this specifically because it's an array
if ($key === 'enabled_bridges') {