Sign in
apache
/
zetacomponents
/
trunk
/
.
/
Reflection
/
tests
/
test_classes
/
MyReflectionProperty.php
blob: a1b95a08602663100bf48f2bbabf5dad7b73bc8e [
file
]
<?
php
class
MyReflectionProperty
extends
ReflectionProperty
{
public
function
change
()
{
return
true
;
}
public
function
getDeclaringClass
()
{
return
new
MyReflectionClass
(
parent
::
getDeclaringClass
()->
getName
());
}
}
?>