<?php trait Foo { public function test() { echo 'TEST'; } } class Bar { use Foo; } class Baz extends Bar { } (new Baz)->test();
You have javascript disabled. You will not be able to edit any code.