Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 1 |
Lines | 0 |
Ratio | 0 % |
Tests | 2 |
CRAP Score | 1 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
9492 | 13 | public static function str_upper_camelize( |
|
9493 | string $str, |
||
9494 | string $encoding = 'UTF-8', |
||
9495 | bool $clean_utf8 = false, |
||
9496 | string $lang = null, |
||
9497 | bool $try_to_keep_the_string_length = false |
||
9498 | ): string { |
||
9499 | 13 | return self::ucfirst(self::str_camelize($str, $encoding), $encoding, $clean_utf8, $lang, $try_to_keep_the_string_length); |
|
9500 | } |
||
14614 |