<?php class Foo { use Bar; public string $id = 'foo'; } trait Bar { public function someMethod() { var_dump($this->id); } } (new Foo)->someMethod();
You have javascript disabled. You will not be able to edit any code.