File "CacheInterface.php"

Full Path: /home/warrior1/public_html/plugins/mailpoet/vendor-prefixed/twig/twig/src/Cache/CacheInterface.php
File size: 329 bytes
MIME-type: text/x-php
Charset: utf-8

<?php
namespace MailPoetVendor\Twig\Cache;
if (!defined('ABSPATH')) exit;
interface CacheInterface
{
 public function generateKey(string $name, string $className) : string;
 public function write(string $key, string $content) : void;
 public function load(string $key) : void;
 public function getTimestamp(string $key) : int;
}