mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 00:48:54 +00:00
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:
parent
93d6189630
commit
56023920cb
1 changed files with 4 additions and 2 deletions
|
@ -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>
|
||||
|
|
Loading…
Reference in a new issue