protected function CacheTest::isSharedStorage in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/doctrine/cache/tests/Doctrine/Tests/Common/Cache/CacheTest.php \Doctrine\Tests\Common\Cache\CacheTest::isSharedStorage()
Return whether multiple cache providers share the same storage.
This is used for skipping certain tests for shared storage behavior.
Return value
boolean
2 calls to CacheTest::isSharedStorage()
- CacheTest::testDeleteAllAndNamespaceVersioningBetweenCaches in vendor/
doctrine/ cache/ tests/ Doctrine/ Tests/ Common/ Cache/ CacheTest.php - CacheTest::testFlushAllAndNamespaceVersioningBetweenCaches in vendor/
doctrine/ cache/ tests/ Doctrine/ Tests/ Common/ Cache/ CacheTest.php
3 methods override CacheTest::isSharedStorage()
- ArrayCacheTest::isSharedStorage in vendor/
doctrine/ cache/ tests/ Doctrine/ Tests/ Common/ Cache/ ArrayCacheTest.php - Return whether multiple cache providers share the same storage.
- BaseFileCacheTest::isSharedStorage in vendor/
doctrine/ cache/ tests/ Doctrine/ Tests/ Common/ Cache/ BaseFileCacheTest.php - Return whether multiple cache providers share the same storage.
- ChainCacheTest::isSharedStorage in vendor/
doctrine/ cache/ tests/ Doctrine/ Tests/ Common/ Cache/ ChainCacheTest.php - Return whether multiple cache providers share the same storage.
File
- vendor/
doctrine/ cache/ tests/ Doctrine/ Tests/ Common/ Cache/ CacheTest.php, line 364
Class
Namespace
Doctrine\Tests\Common\CacheCode
protected function isSharedStorage() {
return true;
}