|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2015-06-08 18:03 UTC] cmb@php.net
-Type: Bug
+Type: Feature/Change Request
[2015-06-08 18:03 UTC] cmb@php.net
[2015-06-09 14:13 UTC] cmb@php.net
-Status: Open
+Status: Duplicate
-Assigned To:
+Assigned To: cmb
[2015-06-09 14:13 UTC] cmb@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sun Nov 02 19:00:02 2025 UTC |
Description: ------------ trait A { function sigh(){} } trait B{ use A; } trait C{ use A; } class GAWD{ use B; use C; } Fatal error: Trait method sigh has not been applied, because there are collisions with other trait methods on GAWD in...