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(); }