Your IP : 216.73.216.95


Current Path : /var/www/html/wp-content/plugins/mailpoet/vendor-prefixed/psr/cache/src/
Upload File :
Current File : /var/www/html/wp-content/plugins/mailpoet/vendor-prefixed/psr/cache/src/CacheItemInterface.php

<?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);
}