Total Complexity | 4 |
Total Lines | 23 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
7 | final class TimeOfDayFilter |
||
8 | { |
||
9 | /** |
||
10 | * Filters a given value as a valid HH:MM:SS formatted string. |
||
11 | * |
||
12 | * @param mixed $value the value to be filtered. |
||
13 | * |
||
14 | * @return string |
||
15 | * |
||
16 | * @throws FilterException Thrown if the value cannot be filtered. |
||
17 | */ |
||
18 | public static function filter($value) : string |
||
32 |