Total Complexity | 5 |
Total Lines | 39 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
7 | class Product |
||
8 | { |
||
9 | /** |
||
10 | * PRODUCT. |
||
11 | * |
||
12 | * PRODUCT returns the product of all the values and cells referenced in the argument list. |
||
13 | * |
||
14 | * Excel Function: |
||
15 | * PRODUCT(value1[,value2[, ...]]) |
||
16 | * |
||
17 | * @param mixed ...$args Data values |
||
18 | * |
||
19 | * @return float|string |
||
20 | */ |
||
21 | 20 | public static function funcProduct(...$args) |
|
48 |