Resources/PhpOffice/PhpSpreadsheet/Calculation/Internal/MakeMatrix.php
2025-04-02 14:15:06 +00:00

12 lines
169 B
PHP

<?php
namespace PhpOffice\PhpSpreadsheet\Calculation\Internal;
class MakeMatrix
{
public static function make(...$args): array
{
return $args;
}
}