optionsToCamelCase() public static method

Return option values indexed by name using camelCased keys
public static optionsToCamelCase ( array $options ) : mixed[]
$options array Array of options
return mixed[] Array of options indexed by (camelCased) name
 public function testOptionsToCamelCase()
 {
     $array = array('hello_there' => 'Hello', 'bye_bye' => 'Bye');
     $this->assertEquals(array('helloThere' => 'Hello', 'byeBye' => 'Bye'), ClassLoader::optionsToCamelCase($array));
 }