Skip to content

Commit 54e2658

Browse files
committed
Fixed broken build and remove depencency on taggable
1 parent bd0cd8b commit 54e2658

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

ArrayCachePool.php

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,17 +16,14 @@
1616
use Cache\Adapter\Common\PhpCacheItem;
1717
use Cache\Hierarchy\HierarchicalCachePoolTrait;
1818
use Cache\Hierarchy\HierarchicalPoolInterface;
19-
use Cache\Taggable\TaggablePoolInterface;
20-
use Cache\Taggable\TaggablePoolTrait;
2119

2220
/**
2321
* Array cache pool. You could set a limit of how many items you want to be stored to avoid memory leaks.
2422
*
2523
* @author Tobias Nyholm <[email protected]>
2624
*/
27-
class ArrayCachePool extends AbstractCachePool implements HierarchicalPoolInterface, TaggablePoolInterface
25+
class ArrayCachePool extends AbstractCachePool implements HierarchicalPoolInterface
2826
{
29-
use TaggablePoolTrait;
3027
use HierarchicalCachePoolTrait;
3128

3229
/**

composer.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,7 @@
2727
"php": "^5.5 || ^7.0",
2828
"psr/cache": "^1.0",
2929
"cache/adapter-common": "^0.4",
30-
"cache/hierarchical-cache": "^0.3",
31-
"cache/taggable-cache": "^0.4"
30+
"cache/hierarchical-cache": "^0.3"
3231
},
3332
"require-dev": {
3433
"phpunit/phpunit": "^4.0 || ^5.1",

0 commit comments

Comments
 (0)