diff options
Diffstat (limited to 'app/Core/Cache/CacheInterface.php')
| -rw-r--r-- | app/Core/Cache/CacheInterface.php | 14 | 
1 files changed, 7 insertions, 7 deletions
diff --git a/app/Core/Cache/CacheInterface.php b/app/Core/Cache/CacheInterface.php index d9e9747a..19bd6ef7 100644 --- a/app/Core/Cache/CacheInterface.php +++ b/app/Core/Cache/CacheInterface.php @@ -3,15 +3,15 @@  namespace Kanboard\Core\Cache;  /** - * Cache Interface + * Interface CacheInterface   * - * @package  cache - * @author   Frederic Guillot + * @package Kanboard\Core\Cache + * @author  Frederic Guillot   */  interface CacheInterface  {      /** -     * Save a new value in the cache +     * Store an item in the cache       *       * @access public       * @param  string  $key @@ -20,7 +20,7 @@ interface CacheInterface      public function set($key, $value);      /** -     * Fetch value from cache +     * Retrieve an item from the cache by key       *       * @access public       * @param  string  $key @@ -29,14 +29,14 @@ interface CacheInterface      public function get($key);      /** -     * Clear all cache +     * Remove all items from the cache       *       * @access public       */      public function flush();      /** -     * Remove cached value +     * Remove an item from the cache       *       * @access public       * @param  string  $key  | 
