From 0db31caf67433a23dd331599e12e10397b2761e5 Mon Sep 17 00:00:00 2001 From: DanielEScherzer Date: Wed, 11 Sep 2024 20:02:20 -0700 Subject: [PATCH] zend_compile.h: `ZEND_ACC_DEPRECATED` can be used for class constants Support for deprecating class constants was added to implement the PHP 8.3 deprecations in #11615, but the documentation update was missed. [skip ci] --- Zend/zend_compile.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Zend/zend_compile.h b/Zend/zend_compile.h index f8f33879973f1..d0b0a0f8d08cc 100644 --- a/Zend/zend_compile.h +++ b/Zend/zend_compile.h @@ -337,7 +337,7 @@ typedef struct _zend_oparray_context { /* ============== | | | */ /* | | | */ /* deprecation flag | | | */ -#define ZEND_ACC_DEPRECATED (1 << 11) /* | X | | */ +#define ZEND_ACC_DEPRECATED (1 << 11) /* | X | | X */ /* | | | */ /* Function returning by reference | | | */ #define ZEND_ACC_RETURN_REFERENCE (1 << 12) /* | X | | */