php-src/ext/reflection/tests/bug36337.phpt
Ilija Tovilo 269c8dac1d
Implement enums
RFC: https://wiki.php.net/rfc/enumerations

Co-authored-by: Nikita Popov <nikita.ppv@gmail.com>

Closes GH-6489.
2021-03-17 19:08:03 +01:00

29 lines
484 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