<?php
// label in function Salt syntax 
// is not type juste for best read
$rt = myfunction(
    bar_bar: 10,
    foo_foo: 5
);
var_dump($rt);
function myfunction($bar_bar, $foo_foo): int
{
    return $bar_bar + $foo_foo;
}