From: Michael Wallner Date: Wed, 12 Dec 2012 11:44:25 +0000 (+0000) Subject: use explicit abstract class flag X-Git-Tag: RELEASE_2_1_0_RC3~10^2^2~78 X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-http;a=commitdiff_plain;h=00ddfeff901c72b329d32956f1fb7d909eec2314 use explicit abstract class flag --- diff --git a/php_http_object.c b/php_http_object.c index c278e6b..d7f1a0f 100644 --- a/php_http_object.c +++ b/php_http_object.c @@ -173,7 +173,7 @@ PHP_METHOD(HttpObject, triggerError) PHP_MINIT_FUNCTION(http_object) { - PHP_HTTP_REGISTER_CLASS(http, Object, http_object, NULL, ZEND_ACC_ABSTRACT); + PHP_HTTP_REGISTER_CLASS(http, Object, http_object, NULL, ZEND_ACC_EXPLICIT_ABSTRACT_CLASS); php_http_object_get_class_entry()->create_object = php_http_object_new; zend_declare_property_null(php_http_object_get_class_entry(), ZEND_STRL("defaultErrorHandling"), (ZEND_ACC_STATIC|ZEND_ACC_PROTECTED) TSRMLS_CC);