ru_php/Zend/tests/property_hooks/interface_get_only.phpt

16 lines
181 B
PHP

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