summaryrefslogtreecommitdiff
path: root/Zend/zend_exceptions.c
diff options
context:
space:
mode:
authorGabriel Caruso <carusogabriel34@gmail.com>2018-02-23 20:55:56 -0300
committerChristoph M. Becker <cmbecker69@gmx.de>2018-02-24 11:45:17 +0100
commita2c7c46d5ef5b9fc945d7b655d31d5c9f1a72d34 (patch)
tree1388bf375c2f77ae99e4f3b75b2293d5236554a0 /Zend/zend_exceptions.c
parent3da9fc86d1651e857a6b1907e093a7d485a399ba (diff)
downloadphp-git-a2c7c46d5ef5b9fc945d7b655d31d5c9f1a72d34.tar.gz
[ci skip] Add missing return types to protos
Diffstat (limited to 'Zend/zend_exceptions.c')
-rw-r--r--Zend/zend_exceptions.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Zend/zend_exceptions.c b/Zend/zend_exceptions.c
index 64a2a8e8f6..927edbfa54 100644
--- a/Zend/zend_exceptions.c
+++ b/Zend/zend_exceptions.c
@@ -303,7 +303,7 @@ ZEND_METHOD(exception, __construct)
}
/* }}} */
-/* {{{ proto Exception::__wakeup()
+/* {{{ proto void Exception::__wakeup()
Exception unserialize checks */
#define CHECK_EXC_TYPE(id, type) \
pvalue = zend_read_property_ex(i_get_exception_base(object), (object), ZSTR_KNOWN(id), 1, &value); \
@@ -330,7 +330,7 @@ ZEND_METHOD(exception, __wakeup)
}
/* }}} */
-/* {{{ proto ErrorException::__construct(string message, int code, int severity [, string filename [, int lineno [, Throwable previous]]])
+/* {{{ proto void ErrorException::__construct(string message, int code, int severity [, string filename [, int lineno [, Throwable previous]]])
ErrorException constructor */
ZEND_METHOD(error_exception, __construct)
{