aboutsummaryrefslogtreecommitdiffstats
path: root/includes/libs/redis/RedisConnRef.php
diff options
context:
space:
mode:
authorThiemo Kreuz <thiemo.kreuz@wikimedia.de>2019-02-27 16:33:55 +0100
committerThiemo Kreuz <thiemo.kreuz@wikimedia.de>2019-02-27 16:33:55 +0100
commitac9fa2d3366958874efcc21761885c6930d87fb6 (patch)
tree196be064eace3f3147e78dd7a0cef9786eb2faea /includes/libs/redis/RedisConnRef.php
parent5d4d405c0765952928727ad1f2731dfbceedd4fe (diff)
downloadmediawikicore-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.php7
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