From 00ddfeff901c72b329d32956f1fb7d909eec2314 Mon Sep 17 00:00:00 2001 From: Michael Wallner Date: Wed, 12 Dec 2012 11:44:25 +0000 Subject: [PATCH] use explicit abstract class flag --- php_http_object.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- 2.30.2