SYMBOL INDEX (155 symbols across 20 files) FILE: lib/Doctrine/Common/Cache/Cache.php type Cache (line 10) | interface Cache method fetch (line 31) | public function fetch($id); method contains (line 40) | public function contains($id); method save (line 55) | public function save($id, $data, $lifeTime = 0); method delete (line 65) | public function delete($id); method getStats (line 89) | public function getStats(); FILE: lib/Doctrine/Common/Cache/CacheProvider.php class CacheProvider (line 13) | abstract class CacheProvider implements Cache, FlushableCache, Clearable... method setNamespace (line 38) | public function setNamespace($namespace) method getNamespace (line 49) | public function getNamespace() method fetch (line 57) | public function fetch($id) method fetchMultiple (line 65) | public function fetchMultiple(array $keys) method saveMultiple (line 92) | public function saveMultiple(array $keysAndValues, $lifetime = 0) method contains (line 105) | public function contains($id) method save (line 113) | public function save($id, $data, $lifeTime = 0) method deleteMultiple (line 121) | public function deleteMultiple(array $keys) method delete (line 129) | public function delete($id) method getStats (line 137) | public function getStats() method flushAll (line 145) | public function flushAll() method deleteAll (line 153) | public function deleteAll() method getNamespacedId (line 174) | private function getNamespacedId(string $id): string method getNamespaceCacheKey (line 184) | private function getNamespaceCacheKey(): string method getNamespaceVersion (line 192) | private function getNamespaceVersion(): int method doFetchMultiple (line 211) | protected function doFetchMultiple(array $keys) method doFetch (line 234) | abstract protected function doFetch($id); method doContains (line 243) | abstract protected function doContains($id); method doSaveMultiple (line 254) | protected function doSaveMultiple(array $keysAndValues, $lifetime = 0) method doSave (line 279) | abstract protected function doSave($id, $data, $lifeTime = 0); method doDeleteMultiple (line 288) | protected function doDeleteMultiple(array $keys) method doDelete (line 310) | abstract protected function doDelete($id); method doFlush (line 317) | abstract protected function doFlush(); method doGetStats (line 324) | abstract protected function doGetStats(); FILE: lib/Doctrine/Common/Cache/ClearableCache.php type ClearableCache (line 13) | interface ClearableCache method deleteAll (line 20) | public function deleteAll(); FILE: lib/Doctrine/Common/Cache/FlushableCache.php type FlushableCache (line 10) | interface FlushableCache method flushAll (line 17) | public function flushAll(); FILE: lib/Doctrine/Common/Cache/MultiDeleteCache.php type MultiDeleteCache (line 12) | interface MultiDeleteCache method deleteMultiple (line 21) | public function deleteMultiple(array $keys); FILE: lib/Doctrine/Common/Cache/MultiGetCache.php type MultiGetCache (line 12) | interface MultiGetCache method fetchMultiple (line 22) | public function fetchMultiple(array $keys); FILE: lib/Doctrine/Common/Cache/MultiOperationCache.php type MultiOperationCache (line 10) | interface MultiOperationCache extends MultiGetCache, MultiDeleteCache, M... FILE: lib/Doctrine/Common/Cache/MultiPutCache.php type MultiPutCache (line 12) | interface MultiPutCache method saveMultiple (line 23) | public function saveMultiple(array $keysAndValues, $lifetime = 0); FILE: lib/Doctrine/Common/Cache/Psr6/CacheAdapter.php class CacheAdapter (line 28) | final class CacheAdapter implements CacheItemPoolInterface method wrap (line 38) | public static function wrap(Cache $cache): CacheItemPoolInterface method __construct (line 56) | private function __construct(Cache $cache) method getCache (line 62) | public function getCache(): Cache method getItem (line 70) | public function getItem($key): CacheItemInterface method getItems (line 98) | public function getItems(array $keys = []): array method hasItem (line 135) | public function hasItem($key): bool method clear (line 146) | public function clear(): bool method deleteItem (line 160) | public function deleteItem($key): bool method deleteItems (line 171) | public function deleteItems(array $keys): bool method save (line 181) | public function save(CacheItemInterface $item): bool method saveDeferred (line 186) | public function saveDeferred(CacheItemInterface $item): bool method commit (line 197) | public function commit(): bool method __destruct (line 246) | public function __destruct() method validKey (line 254) | private static function validKey($key): bool method validKeys (line 274) | private static function validKeys(array $keys): bool method doDeleteMultiple (line 286) | private function doDeleteMultiple(array $keys): bool method doFetchMultiple (line 305) | private function doFetchMultiple(array $keys): array method doSaveMultiple (line 327) | private function doSaveMultiple(array $keysAndValues, int $lifetime = ... FILE: lib/Doctrine/Common/Cache/Psr6/CacheItem.php class CacheItem (line 18) | final class CacheItem implements CacheItemInterface method __construct (line 34) | public function __construct(string $key, $data, bool $isHit) method getKey (line 41) | public function getKey(): string method get (line 51) | public function get() method isHit (line 56) | public function isHit(): bool method set (line 64) | public function set($value): self method expiresAt (line 74) | public function expiresAt($expiration): self method expiresAfter (line 93) | public function expiresAfter($time): self method getExpiry (line 114) | public function getExpiry(): ?float FILE: lib/Doctrine/Common/Cache/Psr6/DoctrineProvider.php class DoctrineProvider (line 27) | final class DoctrineProvider extends CacheProvider method wrap (line 32) | public static function wrap(CacheItemPoolInterface $pool): Cache method __construct (line 50) | private function __construct(CacheItemPoolInterface $pool) method getPool (line 56) | public function getPool(): CacheItemPoolInterface method reset (line 61) | public function reset(): void method doFetch (line 73) | protected function doFetch($id) method doContains (line 85) | protected function doContains($id) method doSave (line 95) | protected function doSave($id, $data, $lifeTime = 0) method doDelete (line 111) | protected function doDelete($id) method doFlush (line 121) | protected function doFlush() method doGetStats (line 131) | protected function doGetStats() FILE: lib/Doctrine/Common/Cache/Psr6/InvalidArgument.php class InvalidArgument (line 11) | final class InvalidArgument extends InvalidArgumentException implements ... FILE: lib/Doctrine/Common/Cache/Psr6/TypedCacheItem.php class TypedCacheItem (line 16) | final class TypedCacheItem implements CacheItemInterface method __construct (line 23) | public function __construct( method getKey (line 30) | public function getKey(): string method get (line 35) | public function get(): mixed method isHit (line 40) | public function isHit(): bool method set (line 45) | public function set(mixed $value): static method expiresAt (line 55) | public function expiresAt($expiration): static method expiresAfter (line 74) | public function expiresAfter($time): static method getExpiry (line 95) | public function getExpiry(): ?float FILE: tests/Doctrine/Tests/Common/Cache/ArrayCache.php class ArrayCache (line 15) | class ArrayCache extends CacheProvider method __construct (line 32) | public function __construct() method doFetch (line 40) | protected function doFetch($id) method doContains (line 56) | protected function doContains($id) method doSave (line 76) | protected function doSave($id, $data, $lifeTime = 0) method doDelete (line 86) | protected function doDelete($id) method doFlush (line 96) | protected function doFlush() method doGetStats (line 106) | protected function doGetStats() FILE: tests/Doctrine/Tests/Common/Cache/ArrayCacheTest.php class ArrayCacheTest (line 8) | class ArrayCacheTest extends CacheTest method getCacheDriver (line 10) | protected function getCacheDriver(): CacheProvider method testGetStats (line 15) | public function testGetStats(): void method isSharedStorage (line 48) | protected function isSharedStorage(): bool FILE: tests/Doctrine/Tests/Common/Cache/CacheProviderTest.php class CacheProviderTest (line 11) | class CacheProviderTest extends DoctrineTestCase method testFetchMultiWillFilterNonRequestedKeys (line 13) | public function testFetchMultiWillFilterNonRequestedKeys(): void method testFailedDeleteAllDoesNotChangeNamespaceVersion (line 41) | public function testFailedDeleteAllDoesNotChangeNamespaceVersion(): void method testSaveMultipleNoFail (line 79) | public function testSaveMultipleNoFail(): void method testDeleteMultipleNoFail (line 110) | public function testDeleteMultipleNoFail(): void method testInvalidNamespaceVersionCacheEntry (line 133) | public function testInvalidNamespaceVersionCacheEntry(): void FILE: tests/Doctrine/Tests/Common/Cache/CacheTest.php class CacheTest (line 21) | abstract class CacheTest extends DoctrineTestCase method testSetContainsFetchDelete (line 28) | public function testSetContainsFetchDelete($value): void method testUpdateExistingEntry (line 52) | public function testUpdateExistingEntry($value): void method testCacheKeyIsCaseSensitive (line 68) | public function testCacheKeyIsCaseSensitive(): void method testFetchMultiple (line 83) | public function testFetchMultiple(): void method testFetchMultipleWithNoKeys (line 122) | public function testFetchMultipleWithNoKeys(): void method testSaveMultiple (line 129) | public function testSaveMultiple(): void method provideDataToCache (line 148) | public function provideDataToCache(): array method testDeleteIsSuccessfulWhenKeyDoesNotExist (line 178) | public function testDeleteIsSuccessfulWhenKeyDoesNotExist(): void method testDeleteAll (line 187) | public function testDeleteAll(): void method testDeleteMulti (line 201) | public function testDeleteMulti(): void method testCanHandleSpecialCacheIds (line 216) | public function testCanHandleSpecialCacheIds(string $id): void method testNoCacheIdCollisions (line 229) | public function testNoCacheIdCollisions(): void method provideCacheIds (line 260) | public function provideCacheIds(): array method testLifetime (line 292) | public function testLifetime(): void method testNoExpire (line 302) | public function testNoExpire(): void method testLongLifetime (line 311) | public function testLongLifetime(): void method testDeleteAllAndNamespaceVersioningBetweenCaches (line 318) | public function testDeleteAllAndNamespaceVersioningBetweenCaches(): void method testFlushAll (line 357) | public function testFlushAll(): void method testFlushAllAndNamespaceVersioningBetweenCaches (line 368) | public function testFlushAllAndNamespaceVersioningBetweenCaches(): void method testNamespace (line 422) | public function testNamespace(): void method testDeleteAllNamespace (line 436) | public function testDeleteAllNamespace(): void method testGetStats (line 464) | public function testGetStats(): void method testSaveReturnsTrueWithAndWithoutTTlSet (line 476) | public function testSaveReturnsTrueWithAndWithoutTTlSet(): void method testValueThatIsFalseBooleanIsProperlyRetrieved (line 484) | public function testValueThatIsFalseBooleanIsProperlyRetrieved() method testFetchingANonExistingKeyShouldNeverCauseANoticeOrWarning (line 498) | public function testFetchingANonExistingKeyShouldNeverCauseANoticeOrWa... method isSharedStorage (line 528) | protected function isSharedStorage(): bool method getCacheDriver (line 533) | abstract protected function getCacheDriver(): CacheProvider; FILE: tests/Doctrine/Tests/Common/Cache/Psr6/CacheAdapterTest.php class CacheAdapterTest (line 18) | final class CacheAdapterTest extends CachePoolTest method createCachePool (line 23) | public function createCachePool(): CacheItemPoolInterface method testWithWrappedCache (line 32) | public function testWithWrappedCache() method testWithWrappedSymfonyCache (line 43) | public function testWithWrappedSymfonyCache() method testWithWrappedMinimalCache (line 51) | public function testWithWrappedMinimalCache() method testItemsAreFlushedToTheUnderlyingCacheOnce (line 114) | public function testItemsAreFlushedToTheUnderlyingCacheOnce(): void method testNamespacingFeatureIsPreservedWithDoctrineProvider (line 131) | public function testNamespacingFeatureIsPreservedWithDoctrineProvider(... method testNamespacingFeatureIsPreservedWithSymfonyDoctrineProvider (line 152) | public function testNamespacingFeatureIsPreservedWithSymfonyDoctrinePr... FILE: tests/Doctrine/Tests/Common/Cache/Psr6/DoctrineProviderTest.php class DoctrineProviderTest (line 27) | class DoctrineProviderTest extends CacheTest method getCacheDriver (line 29) | protected function getCacheDriver(): CacheProvider method testProvider (line 36) | public function testProvider() method testWithWrappedCache (line 60) | public function testWithWrappedCache() method testWithWrappedSymfonyCache (line 68) | public function testWithWrappedSymfonyCache() method testGetStats (line 80) | public function testGetStats(): void method testResetArrayAdapter (line 85) | public function testResetArrayAdapter() method testResetFilesystemAdapter (line 96) | public function testResetFilesystemAdapter() method isSharedStorage (line 121) | protected function isSharedStorage(): bool FILE: tests/Doctrine/Tests/DoctrineTestCase.php class DoctrineTestCase (line 10) | abstract class DoctrineTestCase extends TestCase