Undefined array

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

View file

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