<?php class TestParentClass { public function method() { print_r('Parent method'); print "\n"; } } trait TestTrait { public function method() { print_r('Trait method'); print "\n"; } } class TestChildClass extends TestParentClass { use TestTrait { TestParentClass::method as methodParent; } } (new TestChildClass)->methodParent();
You have javascript disabled. You will not be able to edit any code.