diff --git a/language/oop5/interfaces.xml b/language/oop5/interfaces.xml index 24479e2cf0..dbedfff061 100644 --- a/language/oop5/interfaces.xml +++ b/language/oop5/interfaces.xml @@ -26,8 +26,10 @@ - A class cannot implement two interfaces that share function names, since - it would cause ambiguity. + Prior to PHP 5.3.9, a class could not implement two interfaces that + specified a method with the same name, since it would cause ambiguity. + More recent versions of PHP allow this as long as the duplicate methods + have the same signature.