Total Complexity | 2 |
Total Lines | 10 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
9 | final class Capitalizer extends ChainableFormatter |
||
10 | { |
||
11 | /** |
||
12 | * @param iterable<string> $words Words to format. |
||
13 | * @return Traversable<string> The words with the first character in upper case and the rest in lower case. |
||
14 | */ |
||
15 | 4 | protected function applyCurrent(iterable $words): Traversable |
|
22 |