Added test for bug #36434

This commit is contained in:
Ilia Alshanetsky 2006-02-22 15:45:25 +00:00
parent 7409ed6403
commit 07e7092729

View File

@ -0,0 +1,31 @@
--TEST--
Bug #36434 (Properties from parent class fail to indetify their true origin)
--FILE--
<?php
class ancester
{
public $ancester = 0;
function ancester()
{
return $this->ancester;
}
}
class foo extends ancester
{
public $bar = "1";
function foo()
{
return $this->bar;
}
}
$r = new ReflectionClass('foo');
foreach ($r->GetProperties() as $p)
{
echo $p->getName(). " ". $p->getDeclaringClass()->getName()."\n";
}
?>
--EXPECT--
bar foo
ancester ancester