1
0
mirror of https://github.com/Seldaek/monolog.git synced 2025-08-06 05:07:36 +02:00

Revert addition of JSON_NUMERIC_CHECK as per #844 comment

This commit is contained in:
Jordi Boggiano
2016-09-18 17:59:47 +02:00
parent 19d72693c8
commit 1b5d46fc52

View File

@@ -196,7 +196,7 @@ class NormalizerFormatter implements FormatterInterface
*/
private function jsonEncode($data)
{
return json_encode($data, JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE | JSON_NUMERIC_CHECK | JSON_PRESERVE_ZERO_FRACTION);
return json_encode($data, JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE | JSON_PRESERVE_ZERO_FRACTION);
}
/**