Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | |
100.00% |
3 / 3 |
|
100.00% |
1 / 1 |
CRAP | |
100.00% |
1 / 1 |
| IsSanitizingInput | |
100.00% |
3 / 3 |
|
100.00% |
1 / 1 |
1 | |
100.00% |
1 / 1 |
| convert | |
100.00% |
3 / 3 |
|
100.00% |
1 / 1 |
1 | |||
| 1 | <?php |
| 2 | namespace Apie\IanaValueObjects; |
| 3 | |
| 4 | trait IsSanitizingInput |
| 5 | { |
| 6 | protected function convert(string $input): string |
| 7 | { |
| 8 | $inputLower = strtolower($input); |
| 9 | $data = static::getData(); |
| 10 | |
| 11 | return $data[$inputLower]['Subtag'] ?? $input; |
| 12 | } |
| 13 | } |