/**
* Convert the given string to title case.
*
* @param string $value
* @return string
*/
function convertToTitleCase($value)
{
return mb_convert_case($value, MB_CASE_TITLE, 'UTF-8');
}
/**
* Convert the given string to title case.
*
* @param string $value
* @return string
*/
function convertToTitleCase($value)
{
return mb_convert_case($value, MB_CASE_TITLE, 'UTF-8');
}