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

produceCacheIdentifierFromClassName() protected method

Transform backslashes to underscores to provide an valid cache identifier.
protected produceCacheIdentifierFromClassName ( string $className ) : string
$className string
return string
    protected function produceCacheIdentifierFromClassName($className)
    {
        return str_replace('\\', '_', $className);
    }
ReflectionService