public static function WebformTextHelper::snakeToCamel in Webform 6.x
Same name and namespace in other branches
- 8.5 src/Utility/WebformTextHelper.php \Drupal\webform\Utility\WebformTextHelper::snakeToCamel()
Converts snake case to camel case.
Parameters
string $string: String to be converted.
Return value
string String with snake case converted to camel case.
File
- src/
Utility/ WebformTextHelper.php, line 54
Class
- WebformTextHelper
- Provides helper to operate on strings.
Namespace
Drupal\webform\UtilityCode
public static function snakeToCamel($string) {
return static::getCamelCaseToSnakeCaseNameConverter()
->denormalize($string);
}