Parameter order fixed to match constructor signature #427

This commit is contained in:
Patrick HUSS 2017-03-23 15:08:02 +01:00
parent 3ebd0a271b
commit 439a63fa4f
1 changed files with 2 additions and 2 deletions

View File

@ -143,10 +143,10 @@ class InstallController extends AbstractController {
// test db connection
$this->db = new \psm\Service\Database(
$config['db_host'],
$config['db_port'],
$config['db_user'],
$config['db_pass'],
$config['db_name']
$config['db_name'],
$config['db_port']
);
if($this->db->status()) {