CacheException.php
4 years ago
CacheItemInterface.php
4 years ago
CacheItemPoolInterface.php
4 years ago
InvalidArgumentException.php
4 years ago
index.php
3 years ago
CacheItemPoolInterface.php
16 lines
| 1 | <?php |
| 2 | namespace MailPoetVendor\Psr\Cache; |
| 3 | if (!defined('ABSPATH')) exit; |
| 4 | interface CacheItemPoolInterface |
| 5 | { |
| 6 | public function getItem($key); |
| 7 | public function getItems(array $keys = array()); |
| 8 | public function hasItem($key); |
| 9 | public function clear(); |
| 10 | public function deleteItem($key); |
| 11 | public function deleteItems(array $keys); |
| 12 | public function save(CacheItemInterface $item); |
| 13 | public function saveDeferred(CacheItemInterface $item); |
| 14 | public function commit(); |
| 15 | } |
| 16 |