<?php trait FooTrait { private abstract function bar(); } class Foo { use FooTrait; public function bar() { return 'bar()'; } } var_dump((new Foo())->bar());
You have javascript disabled. You will not be able to edit any code.