Result Size:
625 x 571
tryphp_func_return_strict2.php:
<?php declare(strict_types=1); // strict requirement function addNumbers(float $a, float $b) : int { return (int)($a + $b); } echo addNumbers(1.2, 5.2); ?>
6