<?php trait theTrait { public function test($a, $x=[]) { if (isset($this->x)) { echo 'prefixed: ' . $a; } else { echo $a; } } } class theClass { use theTrait; protected $x = []; } /* class theExtend extends theClass { public function test($b) { echo 'prefixed: ' . $b; } } */ $x = new theClass; $x->test('test');
You have javascript disabled. You will not be able to edit any code.
Value for `_results` contains invalid data `array`