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