<?php trait TestTrait { public function showSelf(): void { echo get_parent_class($this); } } class TestClass { use TestTrait; } class TestSubClass extends TestClass { } $c = new TestSubClass(); $c->showSelf();
You have javascript disabled. You will not be able to edit any code.