Security update for Core, with self-updated composer
[yaffs-website] / vendor / symfony / serializer / Encoder / JsonEncode.php
index 454c0d6a114708a6e77cd91adaaa1cd09d009ccf..14cd2c949a9913ed2a2fa5f3ef12c7660692e029 100644 (file)
@@ -28,22 +28,6 @@ class JsonEncode implements EncoderInterface
         $this->options = $bitmask;
     }
 
-    /**
-     * Returns the last encoding error (if any).
-     *
-     * @return int
-     *
-     * @deprecated since version 2.5, to be removed in 3.0.
-     *             The {@self encode()} throws an exception if error found.
-     * @see http://php.net/manual/en/function.json-last-error.php json_last_error
-     */
-    public function getLastError()
-    {
-        @trigger_error('The '.__METHOD__.' method is deprecated since version 2.5 and will be removed in 3.0. Catch the exception raised by the encode() method instead to get the last JSON encoding error.', E_USER_DEPRECATED);
-
-        return $this->lastError;
-    }
-
     /**
      * Encodes PHP data to a JSON string.
      *