| Total Complexity | 2 |
| Total Lines | 20 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 10 | trait Numeric |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * SQRT - Return the square root of the argument |
||
| 14 | * |
||
| 15 | * @param mixed $value A numeric value for which a square root is to be calculated. |
||
| 16 | * @return float The square root of the given numeric value. |
||
| 17 | */ |
||
| 18 | 1 | public static function mysql_sqrt($value) |
|
| 21 | } |
||
| 22 | |||
| 23 | /** |
||
| 24 | * RAND - Returns a random floating-point |
||
| 25 | * @return float |
||
| 26 | */ |
||
| 27 | 1 | public static function mysql_rand() |
|
| 32 |