Changes how different classes use the Config class.

They were trying to use it as an array instead of using it's helper method that actually returned a usable array.
Fixes #4.
This commit is contained in:
Miguel Nogueira
2018-06-08 15:16:16 +00:00
parent 536b9ac0c3
commit 0ea8c6fb72
4 changed files with 16 additions and 12 deletions

View File

@@ -9,11 +9,12 @@ class Application
public function __construct()
{
$config = new Config();
$cConfigArray = $config->getConfig();
$this->database['username'] = $config['core']['database']['username'];
$this->database['password'] = $config['core']['database']['password'];
$this->database['hostname'] = $config['core']['database']['hostname'];
$this->database['dbname'] = $config['core']['database']['dbname'];
$this->database['username'] = $cConfigArray['core']['database']['username'];
$this->database['password'] = $cConfigArray['core']['database']['password'];
$this->database['hostname'] = $cConfigArray['core']['database']['hostname'];
$this->database['dbname'] = $cConfigArray['core']['database']['dbname'];
$this->db = instDB();