<?php trait PrivateTrait { private function hello() { echo 'HI!'; } } class Foo { use PrivateTrait; public function sayIt() { $this->hello(); } } (new Foo())->sayIt();
You have javascript disabled. You will not be able to edit any code.