1
0
mirror of https://github.com/danog/PHP-Parser.git synced 2024-11-26 11:54:52 +01:00

Remove trailing comma

This commit is contained in:
Nikita Popov 2020-02-09 17:15:59 +01:00
parent 46cbd9393a
commit 40aa2282df

View File

@ -75,7 +75,7 @@ class JsonDecoder
return new $className(
$value['text'],
$value['line'] ?? -1, $value['filePos'] ?? -1, $value['tokenPos'] ?? -1,
$value['endLine'] ?? -1, $value['endFilePos'] ?? -1, $value['endTokenPos'] ?? -1,
$value['endLine'] ?? -1, $value['endFilePos'] ?? -1, $value['endTokenPos'] ?? -1
);
}