Let\'s take a simple example:
trait MyTrait { public function get(): void { var_dump(func_get_args()); } } class MyClass { use MyTrait; }