upgrade idiorm to php8.1-patched version (aaronpk/idiorm)
This commit is contained in:
28
vendor/thecodingmachine/safe/generated/json.php
vendored
28
vendor/thecodingmachine/safe/generated/json.php
vendored
@@ -8,7 +8,7 @@ use Safe\Exceptions\JsonException;
|
||||
* Returns a string containing the JSON representation of the supplied
|
||||
* value.
|
||||
*
|
||||
* The encoding is affected by the supplied options
|
||||
* The encoding is affected by the supplied flags
|
||||
* and additionally the encoding of float values depends on the value of
|
||||
* serialize_precision.
|
||||
*
|
||||
@@ -19,7 +19,7 @@ use Safe\Exceptions\JsonException;
|
||||
*
|
||||
* PHP implements a superset of JSON as specified in the original
|
||||
* RFC 7159.
|
||||
* @param int $options Bitmask consisting of
|
||||
* @param int $flags Bitmask consisting of
|
||||
* JSON_FORCE_OBJECT,
|
||||
* JSON_HEX_QUOT,
|
||||
* JSON_HEX_TAG,
|
||||
@@ -42,30 +42,10 @@ use Safe\Exceptions\JsonException;
|
||||
* @throws JsonException
|
||||
*
|
||||
*/
|
||||
function json_encode($value, int $options = 0, int $depth = 512): string
|
||||
function json_encode($value, int $flags = 0, int $depth = 512): string
|
||||
{
|
||||
error_clear_last();
|
||||
$result = \json_encode($value, $options, $depth);
|
||||
if ($result === false) {
|
||||
throw JsonException::createFromPhpError();
|
||||
}
|
||||
return $result;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Returns the error string of the last json_encode or json_decode
|
||||
* call, which did not specify JSON_THROW_ON_ERROR.
|
||||
*
|
||||
* @return string Returns the error message on success, "No error" if no
|
||||
* error has occurred.
|
||||
* @throws JsonException
|
||||
*
|
||||
*/
|
||||
function json_last_error_msg(): string
|
||||
{
|
||||
error_clear_last();
|
||||
$result = \json_last_error_msg();
|
||||
$result = \json_encode($value, $flags, $depth);
|
||||
if ($result === false) {
|
||||
throw JsonException::createFromPhpError();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user