|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2012-02-12 11:40 UTC] gron@php.net
-Assigned To:
+Assigned To: gron
[2012-02-12 11:40 UTC] gron@php.net
[2012-03-04 19:34 UTC] gron@php.net
[2012-03-04 19:34 UTC] gron@php.net
[2012-03-04 19:34 UTC] gron@php.net
-Status: Assigned
+Status: Closed
[2012-04-18 09:45 UTC] laruence@php.net
[2012-07-24 23:36 UTC] rasmus@php.net
[2013-11-17 09:33 UTC] laruence@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Oct 30 22:00:01 2025 UTC |
Description: ------------ See example script. Test script: --------------- <?php trait T1 { function foo(){ echo "T1\n"; } } trait T2 { function foo(){ echo "T2\n"; } } class C { use T1, T2 { T1::foo insteadof T1; } } C::foo(); Expected result: ---------------- Fatal complaining about inconsistency in statement: T1::foo insteadof T1; Actual result: -------------- T2