You are here

CacheManagerObserverInterface.php in X Autoload 7.5

File

src/CacheManager/CacheManagerObserverInterface.php
View source
<?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);

}

Interfaces