ru_php/Zend/tests/property_hooks/var_property.phpt

16 lines
177 B
PHP

--TEST--
Var hooked property is implicitly public
--FILE--
<?php
class Test {
var $prop { get => 42; }
}
$test = new Test();
var_dump($test->prop);
?>
--EXPECT--
int(42)