]> granicus.if.org Git - php/commitdiff
- Add missing brackets
authorMarcus Boerger <helly@php.net>
Tue, 24 Aug 2004 18:47:18 +0000 (18:47 +0000)
committerMarcus Boerger <helly@php.net>
Tue, 24 Aug 2004 18:47:18 +0000 (18:47 +0000)
Zend/zend_API.c

index 793727900c118ac40f52d92ab2428ec87029377b..5b9c16f3dac6dce3db677bc3f3c2a4275ecd6159 100644 (file)
@@ -1344,21 +1344,21 @@ ZEND_API int zend_register_functions(zend_class_entry *scope, zend_function_entr
                if (ctor) {
                        ctor->common.fn_flags |= ZEND_ACC_CTOR;
                        if (ctor->common.fn_flags & ZEND_ACC_STATIC) {
-                               zend_error(error_type, "Constructor %s::%s cannot be static", ctor->common.scope->name, ctor->common.function_name);
+                               zend_error(error_type, "Constructor %s::%s() cannot be static", ctor->common.scope->name, ctor->common.function_name);
                        }
                        ctor->common.fn_flags &= ~ZEND_ACC_ALLOW_STATIC;
                }
                if (dtor) {
                        dtor->common.fn_flags |= ZEND_ACC_DTOR;
                        if (dtor->common.fn_flags & ZEND_ACC_STATIC) {
-                               zend_error(error_type, "Destructor %s::%s cannot be static", dtor->common.scope->name, dtor->common.function_name);
+                               zend_error(error_type, "Destructor %s::%s() cannot be static", dtor->common.scope->name, dtor->common.function_name);
                        }
                        dtor->common.fn_flags &= ~ZEND_ACC_ALLOW_STATIC;
                }
                if (clone) {
                        clone->common.fn_flags |= ZEND_ACC_CLONE;
                        if (clone->common.fn_flags & ZEND_ACC_STATIC) {
-                               zend_error(error_type, "Constructor %s::%s cannot be static", clone->common.scope->name, clone->common.function_name);
+                               zend_error(error_type, "Constructor %s::%s() cannot be static", clone->common.scope->name, clone->common.function_name);
                        }
                        clone->common.fn_flags &= ~ZEND_ACC_ALLOW_STATIC;
                }