public static function StringHelper::upperCase in GraphQL 8.3
Turn a list of machine names into a upper-cased string.
Return value
string A upper-cased concatenation of the input components.
File
- src/
Utility/ StringHelper.php, line 39
Class
Namespace
Drupal\graphql\UtilityCode
public static function upperCase() {
$result = call_user_func_array([
static::class,
'camelCase',
], func_get_args());
return strtoupper($result);
}