|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2005-09-16 04:42 UTC] lachlan at sitepoint dot com
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Tue Oct 28 20:00:01 2025 UTC |
Description: ------------ When multiple interfaces with common method names are extended by an interface an error is raised. Reproduce code: --------------- interface a { function foo($bar); } interface b { function foo($bar); } interface ab extends a,b {} Result: Fatal error: Can't inherit abstract function b::foo() (previously declared abstract in a) Expected result: ---------------- The code should parse cleanly