<?php trait foo { public function bar() { echo 'trait'; } } class a { public function bar() { echo 'parent'; } } class b extends a { use foo { bar as bat; } } (new b)->bar();
You have javascript disabled. You will not be able to edit any code.