File "CacheItemInterface.php"

Full Path: /home/warrior1/public_html/wp-content/plugins/mailpoet/vendor-prefixed/psr/cache/src/CacheItemInterface.php
File size: 292 bytes
MIME-type: text/x-php
Charset: utf-8

<?php
namespace MailPoetVendor\Psr\Cache;
if (!defined('ABSPATH')) exit;
interface CacheItemInterface
{
 public function getKey();
 public function get();
 public function isHit();
 public function set($value);
 public function expiresAt($expiration);
 public function expiresAfter($time);
}