Current Path : /var/www/html/wp-content/plugins/mailpoet/vendor-prefixed/psr/cache/src/ |
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); }