Doctrine\Common\Cache\CacheProvider::getNamespacedId PHP Метод

getNamespacedId() приватный Метод

Prefixes the passed id with the configured namespace value.
private getNamespacedId ( string $id ) : string
$id string The id to namespace.
Результат string The namespaced id.
    private function getNamespacedId($id)
    {
        $namespaceVersion = $this->getNamespaceVersion();
        return sprintf('%s[%s][%s]', $this->namespace, $id, $namespaceVersion);
    }