Lines Matching refs:obj
222 * @param object $obj Object in which to call the method
228 protected static function callInaccessibleMethod($obj, $func, array $args) { argument
229 $class = new \ReflectionClass($obj);
231 return $method->invokeArgs($obj, $args);
240 * @param object $obj Object on which to access the property
245 protected static function getInaccessibleProperty($obj, $prop) { argument
246 $class = new \ReflectionClass($obj);
248 return $property->getValue($obj);
257 * @param object $obj Object on which to access the property
263 protected static function setInaccessibleProperty($obj, $prop, $value) { argument
264 $class = new \ReflectionClass($obj);
266 $property->setValue($obj, $value);