mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00

RFC: https://wiki.php.net/rfc/property-hooks Co-authored-by: Nikita Popov <nikita.ppv@gmail.com>
11 lines
195 B
PHP
11 lines
195 B
PHP
--TEST--
|
|
ZE2 An interface cannot have properties
|
|
--FILE--
|
|
<?php
|
|
|
|
interface if_a {
|
|
public $member;
|
|
}
|
|
?>
|
|
--EXPECTF--
|
|
Fatal error: Interfaces may only include hooked properties in %s on line %d
|