| Conditions | 2 |
| Paths | 2 |
| Total Lines | 11 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 6 |
| Changes | 0 | ||
| 1 | <?php |
||
| 53 | public static function camelize($input, $separator = '-', $lcFirst = false) |
||
| 54 | { |
||
| 55 | assert(is_string($input)); |
||
| 56 | $spaced = str_replace($separator, ' ', $input); |
||
| 57 | $result = str_replace(' ', '', ucwords($spaced)); |
||
| 58 | if ($lcFirst) |
||
| 59 | { |
||
| 60 | return lcfirst($result); |
||
| 61 | } |
||
| 62 | return $result; |
||
| 63 | } |
||
| 64 | } |