From a8f1f4db859f5773c2f30bae2a15703d396e4aaf Mon Sep 17 00:00:00 2001 From: Noah Fontes Date: Fri, 30 Dec 2005 03:45:11 +0000 Subject: [PATCH] Clarifications for bug #35832 git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@203971 c90b9560-bf6c-de11-be94-00142212c4b1 --- language/oop5/interfaces.xml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/language/oop5/interfaces.xml b/language/oop5/interfaces.xml index 6bedfbf16b..72b4d3b329 100644 --- a/language/oop5/interfaces.xml +++ b/language/oop5/interfaces.xml @@ -1,5 +1,5 @@ - + Object Interfaces @@ -24,6 +24,12 @@ so will result in a fatal error. Classes may implement more than one interface if desired by separating each interface with a comma. + + + A class cannot implement two interfaces that share function names, since + it would cause ambiguity. + + &reftitle.examples;