blob: d24c1bbc1512e87326198eb4b8c528c09f0448a3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<?php
namespace OpenCloud\Integration;
use GuzzleHttp\Client;
class Utils
{
public static function toCamelCase($word, $separator = '_')
{
return str_replace($separator, '', ucwords($word, $separator));
}
}
|