nforbes Fri Dec 30 03:45:11 2005 EDT
Modified files:
/phpdoc/en/language/oop5 interfaces.xml
Log:
Clarifications for bug #35832
http://cvs.php.net/viewcvs.cgi/phpdoc/en/language/oop5/interfaces.xml?r1=1.7&r2=1.8&diff_format=u
Index: phpdoc/en/language/oop5/interfaces.xml
diff -u phpdoc/en/language/oop5/interfaces.xml:1.7
phpdoc/en/language/oop5/interfaces.xml:1.8
--- phpdoc/en/language/oop5/interfaces.xml:1.7 Wed Jul 20 11:33:47 2005
+++ phpdoc/en/language/oop5/interfaces.xml Fri Dec 30 03:45:11 2005
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.7 $ -->
+<!-- $Revision: 1.8 $ -->
<sect1 id="language.oop5.interfaces">
<title>Object Interfaces</title>
<para>
@@ -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.
</para>
+ <note>
+ <para>
+ A class cannot implement two interfaces that share function names, since
+ it would cause ambiguity.
+ </para>
+ </note>
</sect2>
<sect2>
&reftitle.examples;