diff options
author | Nikita Popov <nikic@php.net> | 2015-03-15 09:47:25 +0100 |
---|---|---|
committer | Nikita Popov <nikic@php.net> | 2015-04-01 11:17:55 +0200 |
commit | 8d00385871c6dca1f18a5e7924c655a2cb381564 (patch) | |
tree | aeaa0503ba613bc77332dde492b71f6f105d0ef2 /Zend/zend_API.h | |
parent | 4796e0242b8cdd2a77b552fcbaa74d70d87f6d0a (diff) | |
download | php-git-8d00385871c6dca1f18a5e7924c655a2cb381564.tar.gz |
Reclassify E_STRICT notices
Per RFC https://wiki.php.net/rfc/reclassify_e_strict
While reviewing this, found that there are still three E_STRICTs
left in libraries - need to discuss those.
Diffstat (limited to 'Zend/zend_API.h')
-rw-r--r-- | Zend/zend_API.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zend/zend_API.h b/Zend/zend_API.h index b70dd26ef8..b8547e685e 100644 --- a/Zend/zend_API.h +++ b/Zend/zend_API.h @@ -854,7 +854,7 @@ ZEND_API void ZEND_FASTCALL zend_wrong_callback_error(int severity, int num, cha break; \ } \ } else if (UNEXPECTED(_error != NULL)) { \ - zend_wrong_callback_error(E_STRICT, _i, _error); \ + zend_wrong_callback_error(E_DEPRECATED, _i, _error); \ } #define Z_PARAM_FUNC(dest_fci, dest_fcc) \ |