Skip to content

Commit 77304ac

Browse files
committed
HierarchicalPoolInterface extends CacheItemPoolInterface
This will fix php-cache/issues#48
1 parent e898268 commit 77304ac

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

HierarchicalPoolInterface.php

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,14 @@
1111

1212
namespace Cache\Hierarchy;
1313

14-
interface HierarchicalPoolInterface
14+
use Psr\Cache\CacheItemPoolInterface;
15+
16+
/**
17+
* Let you use hierarchy if you start your tag key with the HIERARCHY_SEPARATOR.
18+
*
19+
* @author Tobias Nyholm <[email protected]>
20+
*/
21+
interface HierarchicalPoolInterface extends CacheItemPoolInterface
1522
{
1623
const HIERARCHY_SEPARATOR = '|';
1724
}

0 commit comments

Comments
 (0)