Collisions with other trait methods
How can I deal with traits with methods of same name? trait FooTrait { public function fooMethod() { return 'foo method'; } public function getRow() { return 'foo row'; } } trait TooTrait { public function tooMethod() { return 'too method'; } public function getRow() { return 'too row'; } } class Boo { use FooTrait; use TooTrait; public function booMethod() { return $this->fooMethod(); } } error, Fatal error: Trait method getRow has not been applied, because there are collisions with other trait methods on Boo in... What should I do about it? And also, with two same method names, how can I get