Yaffs site version 1.1
[yaffs-website] / vendor / symfony / serializer / Encoder / JsonDecode.php
index 8925ec36f7f9961f6bc6b9781127c2d2c36fd672..9acb2bc5a8300a8f7e6577563b78789378b65891 100644 (file)
@@ -101,7 +101,7 @@ class JsonDecode implements DecoderInterface
         $recursionDepth = $context['json_decode_recursion_depth'];
         $options = $context['json_decode_options'];
 
-        if (PHP_VERSION_ID >= 50400) {
+        if (\PHP_VERSION_ID >= 50400) {
             $decodedData = json_decode($data, $associative, $recursionDepth, $options);
         } else {
             $decodedData = json_decode($data, $associative, $recursionDepth);