Gc\View\Helper\ModulePlugin::toCamelCase PHP Метод

toCamelCase() защищенный Метод

Canonicalize name
protected toCamelCase ( string $name ) : string
$name string Name
Результат string
    protected function toCamelCase($name)
    {
        if (isset($this->camelCaseNames[$name])) {
            return $this->camelCaseNames[$name];
        }
        $result = str_replace(array('.', '-', '_'), ' ', $name);
        $result = ucwords($result);
        $result = str_replace(' ', '', $result);
        // this is just for performance instead of using str_replace
        return $this->camelCaseNames[$name] = $result;
    }