Skip to content

Commit 22bbcfb

Browse files
committed
Fixed failing fallback of the environment.
1 parent 187aad3 commit 22bbcfb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

config/config.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
// - `*.global.php`
3939
// - `[FIB_ENV]/*.local.php`
4040
new PhpFileProvider(
41-
realpath(__DIR__) . sprintf('/autoload/{*.global.php,%s/*.local.php}', getenv('FIB_ENV') ?? 'production'),
41+
realpath(__DIR__) . sprintf('/autoload/{*.global.php,%s/*.local.php}', getenv('FIB_ENV') ?: 'production'),
4242
),
4343
], $cacheConfig['config_cache_path']);
4444

0 commit comments

Comments
 (0)