From: Jakub Vrana Date: Sat, 1 Dec 2018 16:51:45 +0000 (+0100) Subject: RedisBagOStuff: Do not pass unused parameter X-Git-Tag: 1.34.0-rc.0~3378^2 X-Git-Url: http://git.cyclocoop.org/%27.%28%24current%20%3E%202?a=commitdiff_plain;h=ff09f00b6aceff8b643e024ce68332eab29af427;p=lhc%2Fweb%2Fwiklou.git RedisBagOStuff: Do not pass unused parameter Found by PHPStan. Change-Id: I20fe8ca713362d115d620a22e04c5dc984ae279e --- diff --git a/includes/libs/objectcache/RedisBagOStuff.php b/includes/libs/objectcache/RedisBagOStuff.php index a473210aff..abf9e8b4ea 100644 --- a/includes/libs/objectcache/RedisBagOStuff.php +++ b/includes/libs/objectcache/RedisBagOStuff.php @@ -230,7 +230,7 @@ class RedisBagOStuff extends BagOStuff { } } } catch ( RedisException $e ) { - $this->handleException( $server, $conn, $e ); + $this->handleException( $conn, $e ); $result = false; } }