diff options
author | Tyson Andre <tysonandre775@hotmail.com> | 2019-02-18 11:35:35 -0500 |
---|---|---|
committer | Peter Kokot <peterkokot@gmail.com> | 2019-02-18 17:56:28 +0100 |
commit | da3316ff0f03f5fccb3a343d31f8cc915da7fa5d (patch) | |
tree | 7015a468b42a47b31fe6579f8ef79836f70bf26c /Zend/zend_inheritance.c | |
parent | 8588a45851f32dea8529aa3045455d6cfa8f5a60 (diff) | |
download | php-git-da3316ff0f03f5fccb3a343d31f8cc915da7fa5d.tar.gz |
Fix typos in code comments in Zend/ [skip ci]
Diffstat (limited to 'Zend/zend_inheritance.c')
-rw-r--r-- | Zend/zend_inheritance.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zend/zend_inheritance.c b/Zend/zend_inheritance.c index 67b8b849e4..1da300f68f 100644 --- a/Zend/zend_inheritance.c +++ b/Zend/zend_inheritance.c @@ -1869,7 +1869,7 @@ static void zend_do_check_for_inconsistent_traits_aliasing(zend_class_entry *ce, ZSTR_VAL(cur_alias->trait_method.method_name)); } else { /** Here are two possible cases: - 1) this is an attempt to modifiy the visibility + 1) this is an attempt to modify the visibility of a method introduce as part of another alias. Since that seems to violate the DRY principle, we check against it and abort. |