Total Complexity | 5 |
Total Lines | 37 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
9 | class Fact |
||
10 | { |
||
11 | /** |
||
12 | * FACT. |
||
13 | * |
||
14 | * Returns the factorial of a number. |
||
15 | * The factorial of a number is equal to 1*2*3*...* number. |
||
16 | * |
||
17 | * Excel Function: |
||
18 | * FACT(factVal) |
||
19 | * |
||
20 | * @param float $factVal Factorial Value |
||
21 | * |
||
22 | * @return int|string Factorial, or a string containing an error |
||
23 | */ |
||
24 | 81 | public static function funcFact($factVal) |
|
48 |