Lines Matching refs:obj
226 * @param object $obj Object in which to call the method
232 protected static function callInaccessibleMethod($obj, $func, array $args) argument
234 $class = new \ReflectionClass($obj);
236 return $method->invokeArgs($obj, $args);
245 * @param object $obj Object on which to access the property
250 protected static function getInaccessibleProperty($obj, $prop) argument
252 $class = new \ReflectionClass($obj);
254 return $property->getValue($obj);
263 * @param object $obj Object on which to access the property
269 protected static function setInaccessibleProperty($obj, $prop, $value) argument
271 $class = new \ReflectionClass($obj);
273 $property->setValue($obj, $value);