ru_php/Zend/tests/property_hooks/syntax.phpt

15 lines
139 B
PHP

--TEST--
Basic property hook syntax
--FILE--
<?php
class Test {
public $prop {
get { }
set { }
}
}
?>
--EXPECT--