Refactor PHP.

This commit is contained in:
Lars Jung 2016-06-22 22:04:35 +02:00
parent 35df02984b
commit 41bb7d76b5
1 changed files with 2 additions and 2 deletions

View File

@ -18,12 +18,12 @@ class Json {
return file_put_contents($path, $json) !== false;
}
public static function decode($json) {
private static function decode($json) {
$json = Json::strip($json);
return json_decode($json, true);
}
public static function strip($commented_json) {
private static function strip($commented_json) {
$insideString = false;
$insideComment = false;
$json = '';