Undefined array

This commit is contained in:
Pierre Rudloff 2015-10-31 15:57:36 +01:00
parent 7da7fcbbe4
commit bfb99370d7

View file

@ -39,9 +39,11 @@ Class Config
private function __construct() private function __construct()
{ {
$yaml = Yaml::parse(__DIR__.'/../config.yml'); $yaml = Yaml::parse(__DIR__.'/../config.yml');
foreach ($yaml as $param=>$value) { if (isset($yaml) && is_array($yaml)) {
if (isset($this->$param)) { foreach ($yaml as $param=>$value) {
$this->$param = $value; if (isset($this->$param)) {
$this->$param = $value;
}
} }
} }
if (getenv('CONVERT')) { if (getenv('CONVERT')) {