You are here

public function CacheProvider::getNamespace in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/doctrine/cache/lib/Doctrine/Common/Cache/CacheProvider.php \Doctrine\Common\Cache\CacheProvider::getNamespace()

Retrieves the namespace that prefixes all cache ids.

Return value

string

1 call to CacheProvider::getNamespace()
ZendDataCache::doFlush in vendor/doctrine/cache/lib/Doctrine/Common/Cache/ZendDataCache.php
Flushes all cache entries.

File

vendor/doctrine/cache/lib/Doctrine/Common/Cache/CacheProvider.php, line 68

Class

CacheProvider
Base class for cache provider implementations.

Namespace

Doctrine\Common\Cache

Code

public function getNamespace() {
  return $this->namespace;
}