Upgrade to 3.1.3

This commit is contained in:
Bastian Allgeier
2019-04-23 16:13:26 +02:00
parent eb29ef6d6c
commit 066913cb6e
53 changed files with 606 additions and 261 deletions

View File

@@ -82,6 +82,11 @@ class PHP extends Handler
$php = static::encode($data);
$php = "<?php\n\nreturn $php;";
return F::write($file, $php);
if (F::write($file, $php) === true) {
F::invalidateOpcodeCache($file);
return true;
}
return false;
}
}

View File

@@ -56,6 +56,8 @@ class Yaml extends Handler
return $yaml;
}
// remove bom
$yaml = str_replace("\xEF\xBB\xBF", '', $yaml);
$result = Spyc::YAMLLoadString($yaml);
if (is_array($result)) {