Total Complexity | 1 |
Total Lines | 16 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
20 | class Camelizer implements CamelizerInterface |
||
21 | { |
||
22 | /** |
||
23 | * Camelize string |
||
24 | * |
||
25 | * @param string $text Text to camelize |
||
26 | * @return string Camelized text |
||
27 | * @see \Kocuj\Di\Tools\Camelizer\CamelizerInterface::camelize() |
||
28 | * @codeCoverageIgnore |
||
29 | */ |
||
30 | public function camelize(string $text): string |
||
38 |