<?php trait A { public function get() { var_dump($this->a); } } class B { use A; } (new B())->get();
You have javascript disabled. You will not be able to edit any code.