Skip to content

Commit 18fba46

Browse files
author
Composite PHP
committed
Minor fix in ConnectionManager::loadConfigs
1 parent ba50060 commit 18fba46

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ConnectionManager.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ private static function loadConfigs(): array
6767
$configFile
6868
));
6969
}
70-
$configFileContent = require_once $configFile;
70+
$configFileContent = require $configFile;
7171
if (empty($configFileContent) || !is_array($configFileContent)) {
7272
throw new DbException(sprintf(
7373
'Connections config file `%s` should return array of connection params',

0 commit comments

Comments
 (0)