Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Cleanup] Require Symfony 3.4.24 in order to drop overloaded RedisTrait #6

Merged
merged 1 commit into from Apr 4, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion composer.json
Expand Up @@ -23,7 +23,7 @@
},
"require": {
"php": "^7.1",
"symfony/symfony": "^3.4.23"
"symfony/symfony": "^3.4.24"
},
"require-dev": {
"cache/integration-tests": "dev-master",
Expand Down
Expand Up @@ -19,7 +19,7 @@
use Predis\Connection\Aggregate\ClusterInterface;
use Predis\Response\Status;
use Symfony\Component\Cache\Adapter\TagAwareAdapterInterface;
use Symfony\Component\Cache\Traits\zRedisTrait;
use Symfony\Component\Cache\Traits\RedisTrait;

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

/**
* Redis "Set" can hold more than 4 billion members, here we limit ourselves to PHP's > 2 billion max int (32Bit).
Expand Down
67 changes: 0 additions & 67 deletions src/lib/Symfony/Components/Cache/Traits/RedisClusterProxy.php

This file was deleted.