ru_php/Zend/tests/property_hooks/interface_set_only.phpt

16 lines
191 B
PHP

--TEST--
Interface may contain only get with no implementation
--FILE--
<?php
interface I {
public $prop { get; }
}
class A implements I {
public $prop { get {} }
}
?>
--EXPECTF--