Refactor PHP.

This commit is contained in:
Lars Jung 2016-06-22 22:04:35 +02:00
parent 35df02984b
commit 41bb7d76b5

View file

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