independent-analytics
/
vendor
/
doctrine
/
cache
/
lib
/
Doctrine
/
Common
/
Cache
/
ClearableCache.php
independent-analytics
/
vendor
/
doctrine
/
cache
/
lib
/
Doctrine
/
Common
/
Cache
Last commit date
Psr6
2 years ago
ApcCache.php
2 years ago
ApcuCache.php
2 years ago
ArrayCache.php
2 years ago
Cache.php
2 years ago
CacheProvider.php
2 years ago
ChainCache.php
2 years ago
ClearableCache.php
2 years ago
CouchbaseBucketCache.php
2 years ago
CouchbaseCache.php
2 years ago
ExtMongoDBCache.php
2 years ago
FileCache.php
2 years ago
FilesystemCache.php
2 years ago
FlushableCache.php
2 years ago
InvalidCacheId.php
2 years ago
LegacyMongoDBCache.php
2 years ago
MemcacheCache.php
2 years ago
MemcachedCache.php
2 years ago
MongoDBCache.php
2 years ago
MultiDeleteCache.php
2 years ago
MultiGetCache.php
2 years ago
MultiOperationCache.php
2 years ago
MultiPutCache.php
2 years ago
PhpFileCache.php
2 years ago
PredisCache.php
2 years ago
RedisCache.php
2 years ago
SQLite3Cache.php
2 years ago
Version.php
2 years ago
VoidCache.php
2 years ago
WinCacheCache.php
2 years ago
XcacheCache.php
2 years ago
ZendDataCache.php
2 years ago
ClearableCache.php
23 lines
| 1 | <?php |
| 2 | |
| 3 | namespace IAWP_SCOPED\Doctrine\Common\Cache; |
| 4 | |
| 5 | /** |
| 6 | * Interface for cache that can be flushed. |
| 7 | * |
| 8 | * Intended to be used for partial clearing of a cache namespace. For a more |
| 9 | * global "flushing", see {@see FlushableCache}. |
| 10 | * |
| 11 | * @link www.doctrine-project.org |
| 12 | * @internal |
| 13 | */ |
| 14 | interface ClearableCache |
| 15 | { |
| 16 | /** |
| 17 | * Deletes all cache entries in the current cache namespace. |
| 18 | * |
| 19 | * @return bool TRUE if the cache entries were successfully deleted, FALSE otherwise. |
| 20 | */ |
| 21 | public function deleteAll(); |
| 22 | } |
| 23 |