php-src/ext/reflection/tests/ReflectionParameter_double_construct.phpt
Niels Dossche f0f666ba3f
Fix GH-16601: Memory leak in Reflection constructors
Additionally fixes wrong behaviour in ReflectionParameter when you first
have a construction that uses an object and the subsequent doesn't.

Closes GH-16672.
2024-11-02 19:35:20 +01:00

27 lines
486 B
PHP

--TEST--
ReflectionParameter double construct call
--FILE--
<?php
$closure = function (int $x): void {};
$r = new ReflectionParameter($closure, 'x');
var_dump($r);
$r->__construct($closure, 'x');
var_dump($r);
$r->__construct('ord', 'character');
var_dump($r);
?>
--EXPECT--
object(ReflectionParameter)#2 (1) {
["name"]=>
string(1) "x"
}
object(ReflectionParameter)#2 (1) {
["name"]=>
string(1) "x"
}
object(ReflectionParameter)#2 (1) {
["name"]=>
string(9) "character"
}