<?php trait PersonPL{ public function sayHello($name){ echo 'Witaj, nazywam siÄ™ '.$name; } public function whereFrom($country){ echo 'Jestem z '.$country; } } trait PersonENG{ public function sayHello($name){ echo 'Hi, my name is '.$name; } public function whereFrom($country){ echo 'I am form '.$country; } } class TestA{ // use PersonPL, PersonENG; // Fatal error: Trait method sayHello has not been applied, because there are collisions with other trait methods on TestA }
You have javascript disabled. You will not be able to edit any code.