| Name | Size | Mode | Actions |
|---|---|---|---|
| autoload.php | 1103 | 0644 | editdlrm |
| CacheInterface.php | 2437 | 0644 | editdlrm |
| CacheTrait.php | 2545 | 0644 | editdlrm |
| CallbackInterface.php | 811 | 0644 | editdlrm |
| ItemInterface.php | 1772 | 0644 | editdlrm |
| TagAwareCacheInterface.php | 1005 | 0644 | editdlrm |
/usr/share/php/Symfony/Contracts/Cache/TagAwareCacheInterface.php (1005B)
*/ interface TagAwareCacheInterface extends CacheInterface { /** * Invalidates cached items using tags. * * When implemented on a PSR-6 pool, invalidation should not apply * to deferred items. Instead, they should be committed as usual. * This allows replacing old tagged values by new ones without * race conditions. * * @param string[] $tags An array of tags to invalidate * * @return bool True on success * * @throws InvalidArgumentException When $tags is not valid */ public function invalidateTags(array $tags); }