diff --git a/src/Sikofitt/Config/DotConfig.php b/src/Sikofitt/Config/DotConfig.php index ed9ca2a..7992b18 100644 --- a/src/Sikofitt/Config/DotConfig.php +++ b/src/Sikofitt/Config/DotConfig.php @@ -32,6 +32,7 @@ use Symfony\Component\Yaml\Yaml; class DotConfig { private $config; + private $arrayConfig; /** * Configuration constructor. @@ -50,7 +51,7 @@ class DotConfig $file = $fileLocator->locate('config.yaml', $configDirectory); $contents = file_get_contents($file); $data = Yaml::parse($contents); - + $this->arrayConfig = $data; $this->config = new Data($data); }