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

Additionally fixes wrong behaviour in ReflectionParameter when you first have a construction that uses an object and the subsequent doesn't. Closes GH-16672.
27 lines
486 B
PHP
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"
|
|
}
|