for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Arthem\GraphQLMapper\Utils;
abstract class StringHelper
{
/**
* Camelizes a string.
*
* @param string $id A string to camelize
* @return string The camelized string
*/
public static function camelize($id)
return strtr(ucwords(strtr($id, ['_' => ' ', '.' => '_ ', '\\' => '_ '])), [' ' => '']);
}