diff options
author | Thiemo Kreuz <thiemo.kreuz@wikimedia.de> | 2019-02-27 16:33:55 +0100 |
---|---|---|
committer | Thiemo Kreuz <thiemo.kreuz@wikimedia.de> | 2019-02-27 16:33:55 +0100 |
commit | ac9fa2d3366958874efcc21761885c6930d87fb6 (patch) | |
tree | 196be064eace3f3147e78dd7a0cef9786eb2faea /includes/libs/redis/RedisConnRef.php | |
parent | 5d4d405c0765952928727ad1f2731dfbceedd4fe (diff) | |
download | mediawikicore-ac9fa2d3366958874efcc21761885c6930d87fb6.tar.gz mediawikicore-ac9fa2d3366958874efcc21761885c6930d87fb6.zip |
redis: Fix incomplete @var documentation in RedisConnRef
Change-Id: Id6cf3731986a004ffa80611fcf02c43fd6609ff1
Diffstat (limited to 'includes/libs/redis/RedisConnRef.php')
-rw-r--r-- | includes/libs/redis/RedisConnRef.php | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/includes/libs/redis/RedisConnRef.php b/includes/libs/redis/RedisConnRef.php index d09620b415bb..db2976092a31 100644 --- a/includes/libs/redis/RedisConnRef.php +++ b/includes/libs/redis/RedisConnRef.php @@ -33,9 +33,10 @@ class RedisConnRef implements LoggerAwareInterface { protected $pool; /** @var Redis */ protected $conn; - - protected $server; // string - protected $lastError; // string + /** @var string */ + protected $server; + /** @var string|null */ + protected $lastError; /** * @var LoggerInterface |