<?php declare(strict_types=1); function takesFloat(float $value) { var_dump($value); } function takesInt(int $value) { takesFloat($value); } takesInt(42);
You have javascript disabled. You will not be able to edit any code.