From 66c7e3283833e25ab5fc04772ca1d660df957217 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=20Waterb=C3=B6hr?= Date: Thu, 22 Oct 2015 11:19:59 +0200 Subject: [PATCH] Update AbstractCommand.php fixed return value to return correct dsn with appended user and password values --- Command/AbstractCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Command/AbstractCommand.php b/Command/AbstractCommand.php index 6d4d5d2..98f1e94 100644 --- a/Command/AbstractCommand.php +++ b/Command/AbstractCommand.php @@ -279,7 +279,7 @@ abstract class AbstractCommand extends ContainerAwareCommand $dsn[] = 'password=' . urlencode($connection['password']); } - return $connection['dsn']; + return implode(';', $dsn); } /**