summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStanislav Malyshev <stas@php.net>2015-08-04 16:13:53 -0700
committerStanislav Malyshev <stas@php.net>2015-08-04 16:13:53 -0700
commit568a35f84f934d1fe1b9817b4226cf2bd9d8f4cc (patch)
treea15b8ce9f1699372ff38b70b3b7198713dfe5634
parented709d5aa01375beb7e0b408c4027bbb9cfb52b6 (diff)
parentf2f8ea9ac53973a1ddb55ddc5eae3109d841309c (diff)
downloadphp-git-568a35f84f934d1fe1b9817b4226cf2bd9d8f4cc.tar.gz
Merge branch 'PHP-5.5' into PHP-5.6
* PHP-5.5: __wakeup doesn't have to be final
-rw-r--r--Zend/zend_exceptions.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Zend/zend_exceptions.c b/Zend/zend_exceptions.c
index 806c2ef9e3..40248f7f5e 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)