diff options
author | Nikita Popov <nikita.ppv@gmail.com> | 2020-03-06 16:29:17 +0100 |
---|---|---|
committer | Nikita Popov <nikita.ppv@gmail.com> | 2020-03-06 16:31:03 +0100 |
commit | 9c6e206bce57d84ffe13181033ec6c7be1779ad0 (patch) | |
tree | 757393a67f89264205b4f9f9cf8e378c2435463f /Zend/zend_API.h | |
parent | 7309c23644e3cf362f1a37d8b295f1caa650d74f (diff) | |
download | php-git-9c6e206bce57d84ffe13181033ec6c7be1779ad0.tar.gz |
Remove NO_ACCESS flag for zend_is_callable()
We may add support for fake_scope if necessary.
Diffstat (limited to 'Zend/zend_API.h')
-rw-r--r-- | Zend/zend_API.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Zend/zend_API.h b/Zend/zend_API.h index 0e93159167..f64f346951 100644 --- a/Zend/zend_API.h +++ b/Zend/zend_API.h @@ -327,7 +327,6 @@ ZEND_API int zend_disable_class(char *class_name, size_t class_name_length); ZEND_API ZEND_COLD void zend_wrong_param_count(void); #define IS_CALLABLE_CHECK_SYNTAX_ONLY (1<<0) -#define IS_CALLABLE_CHECK_NO_ACCESS (1<<1) #define IS_CALLABLE_CHECK_SILENT (1<<3) ZEND_API void zend_release_fcall_info_cache(zend_fcall_info_cache *fcc); |