From 2c26450c3821b1f9560198a15640fbf5faa9f22b Mon Sep 17 00:00:00 2001 From: boonkerz Date: Wed, 8 Apr 2015 20:01:12 +0200 Subject: [PATCH] In order to compare with services.xml in services.xml the parameters are: %db.host% %db.name% %db.user% %db.pass% --- src/psm/Service/Database.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/psm/Service/Database.php b/src/psm/Service/Database.php index a0de02ad..271f421c 100644 --- a/src/psm/Service/Database.php +++ b/src/psm/Service/Database.php @@ -81,7 +81,7 @@ class Database { * @param string $pass * @param string $db */ - function __construct($host = null, $user = null, $pass = null, $db = null) { + function __construct($host = null, $db = null, $user = null, $pass = null) { if($host != null && $user != null && $pass != null && $db != null) { $this->db_host = $host; $this->db_name = $db;