<?php trait foo { public function hello() { print 123; } } class a { use foo; } class b extends a { use foo; } $b = new b(); $b->hello();
You have javascript disabled. You will not be able to edit any code.