php-src/Zend/tests/property_hooks/explicit_set_value_parameter.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

19 lines
243 B
PHP

--TEST--
Explicit set property hook $value parameter
--FILE--
<?php
class Test {
public $prop {
set($customName) {
var_dump($customName);
}
}
}
$test = new Test();
$test->prop = 42;
?>
--EXPECT--
int(42)