1
0
mirror of https://github.com/php/php-src.git synced 2026-04-27 18:23:26 +02:00
Files
2024-07-14 11:55:03 +02:00

16 lines
315 B
PHP

--TEST--
Property hooks in interfaces
--FILE--
<?php
interface I {
public $prop { get; set; }
}
class C implements I {
}
?>
--EXPECTF--
Fatal error: Class C contains 2 abstract methods and must therefore be declared abstract or implement the remaining methods (I::$prop::get, I::$prop::set) in %s on line %d