php-src/Zend/tests/property_hooks/interface_final_hook.phpt
Ilija Tovilo 780a8280d2
[RFC] Property hooks (#13455)
RFC: https://wiki.php.net/rfc/property-hooks

Co-authored-by: Nikita Popov <nikita.ppv@gmail.com>
2024-07-14 11:55:03 +02:00

10 lines
204 B
PHP

--TEST--
Cannot declare final hook in interface
--FILE--
<?php
interface I {
public $prop { final get; }
}
?>
--EXPECTF--
Fatal error: Property hook cannot be both abstract and final in %s on line %d