PHP - Interfaces and Traits
Find the problem in this PHP code:
trait T1 { public function hello() { return "Hello"; } } trait T2 { public function hello() { return "Hi"; } } class D { use T1, T2; } $obj = new D(); echo $obj->hello();