| Total Complexity | 4 | 
| Total Lines | 19 | 
| Duplicated Lines | 0 % | 
| Changes | 1 | ||
| Bugs | 1 | Features | 0 | 
| 1 | <?php | ||
| 16 | class Utiles | ||
| 17 | { | ||
| 18 | /** | ||
| 19 | * @param string $str | ||
| 20 | * @return string | ||
| 21 | */ | ||
| 22 | public static function appendSlash(string $str): string | ||
| 23 |     { | ||
| 24 | return $str ? rtrim($str, '/') . "/" : $str; | ||
| 25 | } | ||
| 26 | |||
| 27 | /** | ||
| 28 | * Round to even number | ||
| 29 | * @param float $num | ||
| 30 | * @return int | ||
| 31 | */ | ||
| 32 | public static function RTE(float $num): int | ||
| 35 | } | ||
| 36 | } |