Neos\Flow\Reflection\ReflectionService::cleanClassName PHP Method

cleanClassName() protected method

Clean a given class name from possibly prefixed backslash
protected cleanClassName ( string $className ) : string
$className string
return string
    protected function cleanClassName($className)
    {
        return ltrim($className, '\\');
    }
ReflectionService