diff options
author | Stanislav Malyshev <stas@php.net> | 2015-08-04 16:13:26 -0700 |
---|---|---|
committer | Stanislav Malyshev <stas@php.net> | 2015-08-04 16:13:26 -0700 |
commit | f1acac154ac7684bc908fc2ad8962372c9d4e312 (patch) | |
tree | b3e5a71eac79c7684911ae8d26195ea3bcb1b03c | |
parent | 0a21b5d97039945a9e5dc683f2f5e8b379f07ada (diff) | |
download | php-git-f1acac154ac7684bc908fc2ad8962372c9d4e312.tar.gz |
__wakeup doesn't have to be final
-rw-r--r-- | Zend/zend_exceptions.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zend/zend_exceptions.c b/Zend/zend_exceptions.c index 82b777a958..da32ee9610 100644 --- a/Zend/zend_exceptions.c +++ b/Zend/zend_exceptions.c @@ -755,7 +755,7 @@ ZEND_END_ARG_INFO() const static zend_function_entry default_exception_functions[] = { ZEND_ME(exception, __clone, NULL, ZEND_ACC_PRIVATE|ZEND_ACC_FINAL) ZEND_ME(exception, __construct, arginfo_exception___construct, ZEND_ACC_PUBLIC) - ZEND_ME(exception, __wakeup, NULL, ZEND_ACC_PUBLIC|ZEND_ACC_FINAL) + ZEND_ME(exception, __wakeup, NULL, ZEND_ACC_PUBLIC) ZEND_ME(exception, getMessage, NULL, ZEND_ACC_PUBLIC|ZEND_ACC_FINAL) ZEND_ME(exception, getCode, NULL, ZEND_ACC_PUBLIC|ZEND_ACC_FINAL) ZEND_ME(exception, getFile, NULL, ZEND_ACC_PUBLIC|ZEND_ACC_FINAL) |