PHP - Interfaces and Traits
What will be the output of this PHP code?
trait T { public function say() { return "Hello"; } } class B { use T; public function say() { return "World"; } } $obj = new B(); echo $obj->say();