You are here

CacheTagsInvalidatorInterface.php in Supercache 8

Same filename and directory in other branches
  1. 2.0.x src/Cache/CacheTagsInvalidatorInterface.php

File

src/Cache/CacheTagsInvalidatorInterface.php
View 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

Namesort descending Description
CacheTagsInvalidatorInterface Extends core tag invalidtor interface.