File tree Expand file tree Collapse file tree 1 file changed +1
-1
lines changed
Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Original file line number Diff line number Diff line change @@ -6811,6 +6811,7 @@ PHP_MINIT_FUNCTION(reflection) /* {{{ */
68116811 /* IS_IMPLICIT_ABSTRACT is not longer used */
68126812 REGISTER_REFLECTION_CLASS_CONST_LONG (class , "IS_IMPLICIT_ABSTRACT" , ZEND_ACC_IMPLICIT_ABSTRACT_CLASS );
68136813 REGISTER_REFLECTION_CLASS_CONST_LONG (class , "IS_EXPLICIT_ABSTRACT" , ZEND_ACC_EXPLICIT_ABSTRACT_CLASS );
6814+ REGISTER_REFLECTION_CLASS_CONST_LONG (class , "IS_FINAL" , ZEND_ACC_FINAL );
68146815
68156816 reflection_object_ptr = register_class_ReflectionObject (reflection_class_ptr );
68166817 reflection_init_class_handlers (reflection_object_ptr );
@@ -6844,7 +6845,6 @@ PHP_MINIT_FUNCTION(reflection) /* {{{ */
68446845
68456846 reflection_enum_ptr = register_class_ReflectionEnum (reflection_class_ptr );
68466847 reflection_init_class_handlers (reflection_enum_ptr );
6847- REGISTER_REFLECTION_CLASS_CONST_LONG (enum , "IS_FINAL" , ZEND_ACC_FINAL );
68486848
68496849 reflection_enum_unit_case_ptr = register_class_ReflectionEnumUnitCase (reflection_class_constant_ptr );
68506850 reflection_init_class_handlers (reflection_enum_unit_case_ptr );
You can’t perform that action at this time.
0 commit comments