, Tobias Nyholm * * This source file is subject to the MIT license that is bundled * with this source code in the file LICENSE. */ namespace Cache\Adapter\Common; use Cache\TagInterop\TaggableCacheItemPoolInterface; /** * @author Tobias Nyholm */ interface PhpCachePool extends TaggableCacheItemPoolInterface { /** * {@inheritdoc} * * @return PhpCacheItem */ public function getItem($key); /** * {@inheritdoc} * * @return array|\Traversable|PhpCacheItem[] */ public function getItems(array $keys = []); }