[Serializer] Remove deprecated JSON error methods

This commit is contained in:
Kévin Dunglas 2015-01-18 23:48:18 +01:00
parent 56ad3e6668
commit 269aca6728
3 changed files with 0 additions and 62 deletions

View File

@ -50,23 +50,6 @@ class JsonDecode implements DecoderInterface
$this->recursionDepth = (int) $depth;
}
/**
* Returns the last decoding error (if any).
*
* @return int
*
* @deprecated since version 2.5, to be removed in 3.0.
* The {@self decode()} method 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 decode() method instead to get the last JSON decoding error.', E_USER_DEPRECATED);
return $this->lastError;
}
/**
* Decodes data.
*

View File

@ -28,23 +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.
*

View File

@ -36,34 +36,6 @@ class JsonEncoder implements EncoderInterface, DecoderInterface
$this->decodingImpl = $decodingImpl ?: new JsonDecode(true);
}
/**
* Returns the last encoding error (if any).
*
* @return int
*
* @deprecated since version 2.5, to be removed in 3.0. JsonEncode throws exception if an error is found.
*/
public function getLastEncodingError()
{
trigger_error('The '.__METHOD__.' method is deprecated since version 2.5 and will be removed in 3.0. Catch the exception raised by the Symfony\Component\Serializer\Encoder\JsonEncode::encode() method instead to get the last JSON encoding error.', E_USER_DEPRECATED);
return $this->encodingImpl->getLastError();
}
/**
* Returns the last decoding error (if any).
*
* @return int
*
* @deprecated since version 2.5, to be removed in 3.0. JsonDecode throws exception if an error is found.
*/
public function getLastDecodingError()
{
trigger_error('The '.__METHOD__.' method is deprecated since version 2.5 and will be removed in 3.0. Catch the exception raised by the Symfony\Component\Serializer\Encoder\JsonDecode::decode() method instead to get the last JSON decoding error.', E_USER_DEPRECATED);
return $this->decodingImpl->getLastError();
}
/**
* {@inheritdoc}
*/