php-src/ext/reflection/tests/bug36337.phpt
2008-05-24 13:34:22 +00:00

29 lines
483 B
PHP

--TEST--
Reflection Bug #36337 (ReflectionProperty fails to return correct visibility)
--FILE--
<?php
abstract class enum {
protected $_values;
public function __construct() {
$property = new ReflectionProperty(get_class($this),'_values');
var_dump($property->isProtected());
}
}
final class myEnum extends enum {
public $_values = array(
0 => 'No value',
);
}
$x = new myEnum();
echo "Done\n";
?>
--EXPECT--
bool(false)
Done