You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<?phptrait A {
publicfunctiontest() {
return'A';
}
}
trait B {
publicfunctiontest() {
return'B';
}
}
class C {
use A, B {
A::test insteadof B;
B::test insteadof A;
}
}
$c = newC();
var_dump($c->test());
Resulted in this output:
Fatal error: Uncaught Error: Call to undefined method C::test()
But I expected this output instead:
Some trait-resolution-time error
PHP Version
PHP-5.4+
Operating System
No response
The text was updated successfully, but these errors were encountered:
I don't think so. The problem here is that you may two trait methods may mutually suppress each other, resulting in neither method from being added. The problem in your issue is that use adaptations are not linked to the corresponding use block, which is not really a bug but just a very very weird design choice.
Description
The following code:
Resulted in this output:
But I expected this output instead:
PHP Version
PHP-5.4+
Operating System
No response
The text was updated successfully, but these errors were encountered: