<?php trait Foo { public function hello(): string { return "Hello from Foo!"; } } class Bar { use Foo { hello as private somethingElse; } } $bar = new Bar(); var_dump($bar->hello()); // Throws var_dump($bar->somethingElse());
You have javascript disabled. You will not be able to edit any code.