We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1af78bc commit bcb9658Copy full SHA for bcb9658
ext/shmop/shmop.c
@@ -113,7 +113,7 @@ PHP_MINIT_FUNCTION(shmop)
113
zend_class_entry ce;
114
INIT_CLASS_ENTRY(ce, "Shmop", class_Shmop_methods);
115
shmop_ce = zend_register_internal_class(&ce);
116
- shmop_ce->ce_flags |= ZEND_ACC_FINAL;
+ shmop_ce->ce_flags |= ZEND_ACC_FINAL | ZEND_ACC_NO_DYNAMIC_PROPERTIES;
117
shmop_ce->create_object = shmop_create_object;
118
shmop_ce->serialize = zend_class_serialize_deny;
119
shmop_ce->unserialize = zend_class_unserialize_deny;
0 commit comments