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

@@ -22,8 +22,9 @@ class EmailRenderer
public function __construct()
{
$config = new Config();
$cConfigArray = $config->getConfig();
$loader = new Twig_Loader_Filesystem($config['templates']['templatesDirectory']);
$loader = new Twig_Loader_Filesystem($cConfigArray['templates']['templatesDirectory']);
$this->twig = new Twig_Environment($loader);
}