From a50869387413c884b079fd5773c680965fb1b23a Mon Sep 17 00:00:00 2001 From: Xinchen Hui Date: Tue, 21 Apr 2015 22:44:22 +0800 Subject: Remove tail blank which is committed by accident --- Zend/zend_compile.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Zend/zend_compile.c b/Zend/zend_compile.c index 719f6e7de2..4e073fea76 100644 --- a/Zend/zend_compile.c +++ b/Zend/zend_compile.c @@ -3920,7 +3920,7 @@ static void zend_add_trait_method(zend_class_entry *ce, const char *name, const zend_get_function_declaration(fn TSRMLS_CC), zend_get_function_declaration(existing_fn TSRMLS_CC)); } - } else if (fn->common.fn_flags & ZEND_ACC_ABSTRACT) { + } else if (fn->common.fn_flags & ZEND_ACC_ABSTRACT) { /* Make sure the abstract declaration is compatible with previous declaration */ if (!zend_traits_method_compatibility_check(existing_fn, fn TSRMLS_CC)) { zend_error(E_COMPILE_ERROR, "Declaration of %s must be compatible with %s", -- cgit v1.2.1