<?php trait ExampleTrait { public function foo() { echo "foo"; } } class ExampleClass { use ExampleTrait { foo as private _foo; } public function foo() { $this->_foo(); echo "bar"; } } $example = new ExampleClass(); $example->foo();
You have javascript disabled. You will not be able to edit any code.