| 1 | <?php | ||
| 13 | class StringHelper | ||
| 14 | { | ||
| 15 | /** | ||
| 16 | * converts to camel case. Shamefully stolen from. | ||
| 17 | * | ||
| 18 | * @param $str | ||
| 19 | * | ||
| 20 | * @return string | ||
| 21 | */ | ||
| 22 | public static function noFirstCamelCase($str) | ||
| 29 | |||
| 30 | /** | ||
| 31 | * @param $str | ||
| 32 | * | ||
| 33 | * @return string | ||
| 34 | */ | ||
| 35 | public static function camelCase($str) | ||
| 45 | |||
| 46 | /** | ||
| 47 | * Converts camel case to snake case. | ||
| 48 | * | ||
| 49 | * @param $string | ||
| 50 | * | ||
| 51 | * @return string | ||
| 52 | */ | ||
| 53 | public static function camelCaseToSnakeCase($string) | ||
| 57 | } | ||
| 58 |