CacheItemInterface.php
13 lines
| 1 | <?php |
| 2 | namespace MailPoetVendor\Psr\Cache; |
| 3 | if (!defined('ABSPATH')) exit; |
| 4 | interface CacheItemInterface |
| 5 | { |
| 6 | public function getKey(); |
| 7 | public function get(); |
| 8 | public function isHit(); |
| 9 | public function set($value); |
| 10 | public function expiresAt($expiration); |
| 11 | public function expiresAfter($time); |
| 12 | } |
| 13 |