* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Asm89\Twig\CacheExtension\CacheStrategy; /** * Generates a key for a given value. * * @author Alexander */ interface KeyGeneratorInterface { /** * Generate a cache key for a given value. * * @param mixed $value * * @return string */ public function generateKey($value); }