Skip to content

Commit ce74f6e

Browse files
committed
minor
1 parent 1f2d5e8 commit ce74f6e

2 files changed

Lines changed: 6 additions & 8 deletions

File tree

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ This is a implementation for the PSR-6 for an array cache. This implementation s
66
This adapter could also be called Ephemeral or Memory adapter.
77

88

9-
| Feature | |
10-
| ------- | - |
9+
| Feature | Supported |
10+
| ------- | --------- |
1111
| Flush everything | Yes
1212
| Expiration time | No
13-
| Support for tags | Yes
13+
| Tagging | Yes

tests/IntegrationPoolTest.php

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,12 @@
1212
namespace Cache\Adapter\PHPArray\Tests;
1313

1414
use Cache\Adapter\PHPArray\ArrayCachePool;
15-
use Cache\IntegrationTests\CachePoolTest as BaseTest;
15+
use Cache\IntegrationTests\CachePoolTest;
1616

17-
class IntegrationPoolTest extends BaseTest
17+
class IntegrationPoolTest extends CachePoolTest
1818
{
19-
private $cache = [];
20-
2119
public function createCachePool()
2220
{
23-
return new ArrayCachePool($this->cache);
21+
return new ArrayCachePool();
2422
}
2523
}

0 commit comments

Comments
 (0)