<?phpclass Calc { static function getSum(int $n1, int $n2): int { return $n1 + $n2; }}$sum = Calc::getSum(5, 3);//sum is 8echo "sum = $sum";