Skip to content

Commit 3c8fd93

Browse files
[skip ci] zend_compile.h: ZEND_ACC_DEPRECATED can be used for class constants (#15848)
Support for deprecating class constants was added to implement the PHP 8.3 deprecations in #11615, but the documentation update was missed. [skip ci]
1 parent c21899a commit 3c8fd93

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Zend/zend_compile.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -337,7 +337,7 @@ typedef struct _zend_oparray_context {
337337
/* ============== | | | */
338338
/* | | | */
339339
/* deprecation flag | | | */
340-
#define ZEND_ACC_DEPRECATED (1 << 11) /* | X | | */
340+
#define ZEND_ACC_DEPRECATED (1 << 11) /* | X | | X */
341341
/* | | | */
342342
/* Function returning by reference | | | */
343343
#define ZEND_ACC_RETURN_REFERENCE (1 << 12) /* | X | | */

0 commit comments

Comments
 (0)