I was inspecting a class from a phpoffice vendor called phpspreadsheet and found the following function in the Calculation.php module ... not a problem, but I would like to understand the meaning of this function, I have programmed it in php for 10 years and never had seen 3 points within the parameter of a function. I wonder what this means, what causes it or what it is for! Follow the function
private static function mkMatrix(...$args)
{
return $args;
}