1--TEST-- 2ReflectionObject double construct call 3--FILE-- 4<?php 5 6$obj = new stdClass; 7$r = new ReflectionObject($obj); 8var_dump($r); 9$r->__construct($obj); 10var_dump($r); 11 12?> 13--EXPECT-- 14object(ReflectionObject)#2 (1) { 15 ["name"]=> 16 string(8) "stdClass" 17} 18object(ReflectionObject)#2 (1) { 19 ["name"]=> 20 string(8) "stdClass" 21} 22