CacheTagsInvalidatorInterface.php in Supercache 2.0.x
Same filename and directory in other branches
Namespace
Drupal\supercache\CacheFile
src/Cache/CacheTagsInvalidatorInterface.phpView source
<?php
/**
* @file
* Contains \Drupal\supercache\Cache\CacheTagsInvalidatorInterface.
*/
namespace Drupal\supercache\Cache;
/**
* Extends core tag invalidtor interface.
*
* @ingroup cache
*/
interface CacheTagsInvalidatorInterface extends \Drupal\Core\Cache\CacheTagsInvalidatorInterface {
/**
* Reset all tag values.
*/
public function resetTags();
}
Interfaces
Name | Description |
---|---|
CacheTagsInvalidatorInterface | Extends core tag invalidtor interface. |