Skip to content

Commit 69ab6bb

Browse files
committed
Standalone bootstrap - fix DBTOOLS_CONNECTION env process
1 parent c664b49 commit 69ab6bb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Bridge/Standalone/Bootstrap.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -427,7 +427,7 @@ private static function configParseFile(string $filename): array
427427
private static function configGetEnv(array $config): array
428428
{
429429
if (!isset($config['connections'])) {
430-
$config['connections'] = self::getEnv('DBTOOLS_CONNECTION');
430+
$config['connections'] = ['default' => self::getEnv('DBTOOLS_CONNECTION')];
431431
}
432432
if (!isset($config['backup_binary'])) {
433433
$config['backup_binary'] = self::getEnv('DBTOOLS_BACKUP_BINARY');

0 commit comments

Comments
 (0)