Skip to content

Commit 93fd646

Browse files
authored
Merge pull request #60 from cheprasov/upd
Tested on Redis 4.0.8
2 parents e4d0fd5 + a1fe9a0 commit 93fd646

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ RedisClient is a fast, fully-functional and user-friendly client for Redis, opti
1515
- Support __RAW__ commands as arrays `['SET', 'foo', 'bar']`.
1616
- Connections to Redis are established lazily by the client upon the first command.
1717
- Easy to use with IDE, client has PHPDocs for all supported versions.
18-
- By default, the client works with the latest stable version of Redis (4.0.0).
19-
- The client was tested on the next latest versions of Redis: 2.6.17, 2.8.24, 3.0.7, 3.2.8, 4.0.6.
18+
- By default, the client works with the latest stable version of Redis (4.0).
19+
- The client was tested on the next latest versions of Redis: 2.6.17, 2.8.24, 3.0.7, 3.2.8, 4.0.8.
2020
- Also, the client was tested on PHP 5.5, 5.6, 7.0, 7.1, HHVM.
2121

2222
## Usage

src/RedisClient/RedisClient.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,6 @@ class RedisClient extends RedisClient3x2 {};
3333
class RedisClient extends RedisClient4x0 {};
3434
break;
3535
default:
36-
class RedisClient extends RedisClient3x2 {};
36+
class RedisClient extends RedisClient4x0 {};
3737
break;
3838
}

0 commit comments

Comments
 (0)