Puli\Manager\Factory\FactoryManagerImpl::camelize PHP Method

camelize() private method

Camelizes a string.
private camelize ( string $string ) : string
$string string A string.
return string The camelized string.
    private function camelize($string)
    {
        return preg_replace_callback('/\\W+([a-z])/', function ($matches) {
            return strtoupper($matches[1]);
        }, $string);
    }