From 9ad9d7bfbb85b03bacf0ed1c12d16bae5c8bc6ac Mon Sep 17 00:00:00 2001 From: Thomas Müller Date: Mon, 26 Jan 2015 12:59:25 +0100 Subject: naming fixes while reviewing --- core/command/db/converttype.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'core') diff --git a/core/command/db/converttype.php b/core/command/db/converttype.php index cbce1c37101..a2fdab99ba3 100644 --- a/core/command/db/converttype.php +++ b/core/command/db/converttype.php @@ -282,17 +282,17 @@ class ConvertType extends Command { protected function saveDBInfo(InputInterface $input) { $type = $input->getArgument('type'); $username = $input->getArgument('username'); - $dbhost = $input->getArgument('hostname'); - $dbname = $input->getArgument('database'); + $dbHost = $input->getArgument('hostname'); + $dbName = $input->getArgument('database'); $password = $input->getOption('password'); if ($input->getOption('port')) { - $dbhost .= ':'.$input->getOption('port'); + $dbHost .= ':'.$input->getOption('port'); } $this->config->setSystemValues([ 'dbtype' => $type, - 'dbname' => $dbname, - 'dbhost' => $dbhost, + 'dbname' => $dbName, + 'dbhost' => $dbHost, 'dbuser' => $username, 'dbpassword' => $password, ]); -- cgit v1.2.3