<?php trait x { function __call($method, $args) { return parent::__call($method, $args); } } class Foo { public function __call($methods, $args) { echo 'Foo'.PHP_EOL; } } class Bar extends Foo { use x; } $obj = new Bar(); $obj->test();
You have javascript disabled. You will not be able to edit any code.
Value for `_results` contains invalid data `array`