1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <?php
- namespace Symfony\Component\Cache\Adapter;
- use Psr\Cache\CacheItemPoolInterface;
- use Symfony\Component\Cache\CacheItem;
- class_exists(CacheItem::class);
- interface AdapterInterface extends CacheItemPoolInterface
- {
-
- public function getItem($key);
-
- public function getItems(array $keys = []);
-
- public function clear(string $prefix = '');
- }
|