# wp-super-minify/trunk/includes/min/lib/Minify/CacheInterface.php

WP Super Minify • Minify, Compress and Cache HTML, CSS &amp; JavaScript, version trunk. 59 lines.

- Page: https://pluginprobe.com/plugins/wp-super-minify/trunk/code/includes/min/lib/Minify/CacheInterface.php
- Raw: https://pluginprobe.com/plugins/wp-super-minify/trunk/raw/includes/min/lib/Minify/CacheInterface.php
- Modified: 2025-02-16T14:33:30+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/wp-super-minify/trunk/code/includes/min/lib/Minify/CacheInterface.php#L10-L20`.

```php
<?php
/**
 * Interface Minify_CacheInterface
 * @package Minify
 */

/**
 * Interface for Minify cache adapters
 *
 * @package Minify
 */
interface Minify_CacheInterface
{
    /**
     * Write data to cache.
     *
     * @param string $id cache id (e.g. a filename)
     * @param string $data
     *
     * @return bool success
     */
    public function store($id, $data);

    /**
     * Get the size of a cache entry
     *
     * @param string $id cache id (e.g. a filename)
     *
     * @return int size in bytes
     */
    public function getSize($id);

    /**
     * Does a valid cache entry exist?
     *
     * @param string $id       cache id (e.g. a filename)
     * @param int    $srcMtime mtime of the original source file(s)
     *
     * @return bool exists
     */
    public function isValid($id, $srcMtime);

    /**
     * Send the cached content to output
     *
     * @param string $id cache id (e.g. a filename)
     */
    public function display($id);

    /**
     * Fetch the cached content
     *
     * @param string $id cache id (e.g. a filename)
     *
     * @return string
     */
    public function fetch($id);
}

```
