<?php class Base { protected static $prop = 'BASE'; public function getProp() { return static::$prop; } } class Mock extends Base { } $obj = new Mock; $excepted = 'REFLECTED'; $property = new ReflectionProperty('Base', 'prop'); $property->setAccessible(true); $property->setValue($excepted); $actual = $obj->getProp(); echo "Schould be `{$excepted}` and is `{$actual}`\n";
You have javascript disabled. You will not be able to edit any code.
Value for `_results` contains invalid data `array`