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);
232 return $method->invokeArgs($obj, $args);
241 * @param object $obj Object on which to access the property
246 protected static function getInaccessibleProperty($obj, $prop) { argument
247 $class = new \ReflectionClass($obj);
250 return $property->getValue($obj);
259 * @param object $obj Object on which to access the property
265 protected static function setInaccessibleProperty($obj, $prop, $value) { argument
266 $class = new \ReflectionClass($obj);
269 $property->setValue($obj, $value);