diff options
author | Christoph M. Becker <cmbecker69@gmx.de> | 2018-02-27 17:40:03 +0100 |
---|---|---|
committer | Christoph M. Becker <cmbecker69@gmx.de> | 2018-02-27 17:40:03 +0100 |
commit | ef255c9f0f2c2ad1ea224ed215edb00f5bc205bd (patch) | |
tree | 1bc730491678302e195b88b5267197035d03d8c6 /Zend/zend_exceptions.c | |
parent | 58880e3fc1a912d71bb4e19a74480a7458147728 (diff) | |
download | php-git-ef255c9f0f2c2ad1ea224ed215edb00f5bc205bd.tar.gz |
Revert "[ci skip] Add missing return types to protos"
This reverts commit a2c7c46d5ef5b9fc945d7b655d31d5c9f1a72d34.
Since apparently there have been some mistakes in this commit, and it's
not clear yet how to solve them, we're reverting for now.
Diffstat (limited to 'Zend/zend_exceptions.c')
-rw-r--r-- | Zend/zend_exceptions.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Zend/zend_exceptions.c b/Zend/zend_exceptions.c index 927edbfa54..64a2a8e8f6 100644 --- a/Zend/zend_exceptions.c +++ b/Zend/zend_exceptions.c @@ -303,7 +303,7 @@ ZEND_METHOD(exception, __construct) } /* }}} */ -/* {{{ proto void Exception::__wakeup() +/* {{{ proto 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 void ErrorException::__construct(string message, int code, int severity [, string filename [, int lineno [, Throwable previous]]]) +/* {{{ proto ErrorException::__construct(string message, int code, int severity [, string filename [, int lineno [, Throwable previous]]]) ErrorException constructor */ ZEND_METHOD(error_exception, __construct) { |