1--TEST-- 2Interface may contain only set with no implementation 3--FILE-- 4<?php 5 6interface I { 7 public $prop { set; } 8} 9 10class A implements I { 11 public $prop; 12} 13 14?> 15--EXPECTF-- 16