summaryrefslogtreecommitdiffstatshomepage
path: root/core/lib/Drupal/Core/Plugin/CachedDiscoveryClearerInterface.php
blob: 4c39ab9a364a934fcff81cdc183910f9b52fae06 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?php

namespace Drupal\Core\Plugin;

/**
 * Provides a way to clear static caches of all plugin managers.
 */
interface CachedDiscoveryClearerInterface {

  /**
   * Clears the cache on all cached discoveries.
   */
  public function clearCachedDefinitions();

}