***Fix the return type of a function in order to avoid errors.
<?php
//INT TYPE
function sum(int $x, int $y, int $z):int {
    return $x+$y+$z;
}
echo sum(5,5,5);
//STRING TYPE
function txt( string $fname, string $lname):string {
    return $fname.' '.$lname;
}
 echo txt('Sherlock','Holmes');?>
				