1234567891011121314151617181920212223242526272829303132 |
- <?php
- namespace Cache\Adapter\Common;
- use Cache\TagInterop\TaggableCacheItemInterface;
- interface PhpCacheItem extends HasExpirationTimestampInterface, TaggableCacheItemInterface
- {
-
- public function getTags();
- }
|