| Total Complexity | 2 |
| Total Lines | 20 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 27 | abstract class ItemAbstract implements ExtendedCacheItemInterface |
||
| 28 | { |
||
| 29 | use ItemBaseTrait { |
||
| 30 | ItemBaseTrait::__construct as __BaseConstruct; |
||
| 31 | } |
||
| 32 | |||
| 33 | /** |
||
| 34 | * @param ExtendedCacheItemPoolInterface $driver |
||
| 35 | * @return static |
||
| 36 | * @throws PhpfastcacheInvalidArgumentException |
||
| 37 | */ |
||
| 38 | public function setDriver(ExtendedCacheItemPoolInterface $driver) |
||
| 49 |