1KA_F2F/frontend/drupal/modules/xautoload/src/CacheManager/CacheManagerObserverInterface.php
2021-01-08 11:55:00 +01:00

14 lines
262 B
PHP

<?php
namespace Drupal\xautoload\CacheManager;
interface CacheManagerObserverInterface {
/**
* Set the APC prefix after a flush cache.
*
* @param string $prefix
* A prefix for the storage key in APC.
*/
function setCachePrefix($prefix);
}