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

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

Returns the namespace version.
private getNamespaceVersion ( ) : integer
Результат integer
    private function getNamespaceVersion()
    {
        if (null !== $this->namespaceVersion) {
            return $this->namespaceVersion;
        }
        $namespaceCacheKey = $this->getNamespaceCacheKey();
        $this->namespaceVersion = $this->doFetch($namespaceCacheKey) ?: 1;
        return $this->namespaceVersion;
    }