Skip to content

Commit eff67ac

Browse files
authored
Require Symfony v3.4.24 in order to drop overloaded RedisTrait & connected RedisClusterProx (#6)
1 parent f48d37d commit eff67ac

File tree

4 files changed

+3
-548
lines changed

4 files changed

+3
-548
lines changed

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
},
2424
"require": {
2525
"php": "^7.1",
26-
"symfony/symfony": "^3.4.23"
26+
"symfony/symfony": "^3.4.24"
2727
},
2828
"require-dev": {
2929
"cache/integration-tests": "dev-master",

src/lib/Symfony/Components/Cache/Adapter/TagAware/RedisTagAwareAdapter.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
use Predis\Connection\Aggregate\ClusterInterface;
2020
use Predis\Response\Status;
2121
use Symfony\Component\Cache\Adapter\TagAwareAdapterInterface;
22-
use Symfony\Component\Cache\Traits\zRedisTrait;
22+
use Symfony\Component\Cache\Traits\RedisTrait;
2323

2424
/**
2525
* Class RedisTagAwareAdapter, stores tag <> id relationship as a Set so we don't need to fetch tags on get* operations.
@@ -34,7 +34,7 @@
3434
*/
3535
final class RedisTagAwareAdapter extends AbstractTagAwareAdapter implements TagAwareAdapterInterface
3636
{
37-
use zRedisTrait;
37+
use RedisTrait;
3838

3939
/**
4040
* Redis "Set" can hold more than 4 billion members, here we limit ourselves to PHP's > 2 billion max int (32Bit).

src/lib/Symfony/Components/Cache/Traits/RedisClusterProxy.php

Lines changed: 0 additions & 67 deletions
This file was deleted.

0 commit comments

Comments
 (0)