blob: 8ec928fc8915ad282748d607d605a3ef0fca75f0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
--TEST--
Reflection Bug #36337 (ReflectionProperty fails to return correct visibility)
--SKIPIF--
<?php extension_loaded('reflection') or die('skip'); ?>
--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
|