From: Michael Wallner Date: Wed, 12 Dec 2012 11:49:18 +0000 (+0000) Subject: use final_class flag X-Git-Tag: RELEASE_2_1_0_RC3~10^2^2~77 X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-http;a=commitdiff_plain;h=50d35852ac8e72d753aa44e9b1a7ceac04de61db use final_class flag --- diff --git a/php_http_property_proxy.c b/php_http_property_proxy.c index f4d3523..5be7ebb 100644 --- a/php_http_property_proxy.c +++ b/php_http_property_proxy.c @@ -261,7 +261,7 @@ PHP_METHOD(HttpPropertyProxy, __construct) PHP_MINIT_FUNCTION(http_property_proxy) { - PHP_HTTP_REGISTER_CLASS(http\\Object, PropertyProxy, http_property_proxy, NULL, ZEND_ACC_FINAL); + PHP_HTTP_REGISTER_CLASS(http\\Object, PropertyProxy, http_property_proxy, NULL, ZEND_ACC_FINAL_CLASS); php_http_property_proxy_class_entry->create_object = php_http_property_proxy_object_new; memcpy(&php_http_property_proxy_object_handlers, zend_get_std_object_handlers(), sizeof(zend_object_handlers)); php_http_property_proxy_object_handlers.set = php_http_property_proxy_object_set;