<?php
function test(int $a = 1, int $b = 2)
{
	var_dump($a, $b);
}
test(3);
?>