Clarifications for bug #35832

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@203971 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Noah Fontes 2005-12-30 03:45:11 +00:00
parent 36957607e9
commit a8f1f4db85

View file

@ -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;