istic-openstack/server/vendor/php-opencloud/common/tests/integration/Utils.php
manzerbredes 53f65de9d4 Test
2016-03-28 12:17:43 +02:00

13 lines
229 B
PHP
Executable file

<?php
namespace OpenCloud\Integration;
use GuzzleHttp\Client;
class Utils
{
public static function toCamelCase($word, $separator = '_')
{
return str_replace($separator, '', ucwords($word, $separator));
}
}