summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXinchen Hui <laruence@php.net>2015-04-21 22:44:22 +0800
committerXinchen Hui <laruence@php.net>2015-04-21 22:44:22 +0800
commita50869387413c884b079fd5773c680965fb1b23a (patch)
tree8f5c1723edccc001b49e12152f99e2af1e3b0651
parentc667c26f616f91db5b890d39807c77c4720ba507 (diff)
downloadphp-git-a50869387413c884b079fd5773c680965fb1b23a.tar.gz
Remove tail blank which is committed by accident
-rw-r--r--Zend/zend_compile.c2
1 files changed, 1 insertions, 1 deletions
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",