--TEST-- Test typed properties coerce int to float even in strict mode --FILE-- bar = $value; } } $bar = new Bar(); $bar->setBar(100); var_dump($bar->bar); ?> --EXPECT-- float(100)