summaryrefslogtreecommitdiff
path: root/Zend/zend_object_handlers.h
diff options
context:
space:
mode:
Diffstat (limited to 'Zend/zend_object_handlers.h')
-rw-r--r--Zend/zend_object_handlers.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/Zend/zend_object_handlers.h b/Zend/zend_object_handlers.h
index 26b16adcc8..3598fd4f1c 100644
--- a/Zend/zend_object_handlers.h
+++ b/Zend/zend_object_handlers.h
@@ -173,9 +173,9 @@ extern const ZEND_API zend_object_handlers std_object_handlers;
#define zend_get_function_root_class(fbc) \
((fbc)->common.prototype ? (fbc)->common.prototype->common.scope : (fbc)->common.scope)
-#define ZEND_PROPERTY_ISSET 0x0 /* Property is exists and not NULL */
-#define ZEND_PROPERTY_HAS 0x1 /* Property is exists and is TRUE */
-#define ZEND_PROPERTY_EXISTS 0x2 /* Property is exists */
+#define ZEND_PROPERTY_ISSET 0x0 /* Property exists and is not NULL */
+#define ZEND_PROPERTY_NOT_EMPTY ZEND_ISEMPTY /* Property is not empty */
+#define ZEND_PROPERTY_EXISTS 0x2 /* Property exists */
ZEND_API zend_function *zend_std_get_static_method(zend_class_entry *ce, zend_string *function_name_strval, const zval *key);
ZEND_API zval *zend_std_get_static_property(zend_class_entry *ce, zend_string *property_name, zend_bool silent);