mirror of
https://github.com/php/php-src.git
synced 2025-08-15 13:38:49 +02:00

RFC: https://wiki.php.net/rfc/property-hooks Co-authored-by: Nikita Popov <nikita.ppv@gmail.com>
14 lines
139 B
PHP
14 lines
139 B
PHP
--TEST--
|
|
Basic property hook syntax
|
|
--FILE--
|
|
<?php
|
|
|
|
class Test {
|
|
public $prop {
|
|
get { }
|
|
set { }
|
|
}
|
|
}
|
|
|
|
?>
|
|
--EXPECT--
|