diff options
author | Christoph M. Becker <cmbecker69@gmx.de> | 2019-10-05 10:07:43 +0200 |
---|---|---|
committer | Christoph M. Becker <cmbecker69@gmx.de> | 2019-10-05 11:10:30 +0200 |
commit | 49b98b4d5cbce437d5bb93ddf71f24c5db2ff419 (patch) | |
tree | ebec8674238573ff6abf858571a388f25c0de2fe /ext/json/json.c | |
parent | 505050728200e6446cc3ee81d7a2808d3575ea07 (diff) | |
download | php-git-49b98b4d5cbce437d5bb93ddf71f24c5db2ff419.tar.gz |
Add arginfo stub for JsonSerializable
Diffstat (limited to 'ext/json/json.c')
-rw-r--r-- | ext/json/json.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/ext/json/json.c b/ext/json/json.c index 5311d9c113..5db3621b32 100644 --- a/ext/json/json.c +++ b/ext/json/json.c @@ -52,12 +52,8 @@ static const zend_function_entry json_functions[] = { /* }}} */ /* {{{ JsonSerializable methods */ -ZEND_BEGIN_ARG_INFO(json_serialize_arginfo, 0) - /* No arguments */ -ZEND_END_ARG_INFO(); - static const zend_function_entry json_serializable_interface[] = { - PHP_ABSTRACT_ME(JsonSerializable, jsonSerialize, json_serialize_arginfo) + PHP_ABSTRACT_ME(JsonSerializable, jsonSerialize, arginfo_class_JsonSerializable_jsonSerialize) PHP_FE_END }; /* }}} */ |