Document the change in inheritance behaviour in PHP 5.3.9 when conflicting

method names share a signature.

Fixes doc bug #65246 (Discrepancy between documentation and actual workings).


git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@330996 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Adam Harvey 2013-07-21 14:38:05 +00:00
parent 93d6189630
commit 56023920cb

View file

@ -26,8 +26,10 @@
</para>
<note>
<para>
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.
</para>
</note>
<note>