use scalar for default connection alias

This commit is contained in:
Toni Uebernickel 2016-01-24 11:28:34 +01:00
commit 4028cf19e7
3 changed files with 9 additions and 1 deletions

View file

@ -111,6 +111,10 @@ EOT
$connections = array();
foreach ($propelConfiguration['datasources'] as $name => $config) {
if (is_scalar($config)) {
continue;
}
$connections[$name] = $config['connection'];
}