12345678910111213141516171819202122232425262728293031323334 |
- <?php
- namespace Cache\Adapter\Common;
- use Cache\TagInterop\TaggableCacheItemPoolInterface;
- interface PhpCachePool extends TaggableCacheItemPoolInterface
- {
-
- public function getItem($key);
-
- public function getItems(array $keys = []);
- }
|