aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lib/private/Http/Client/NegativeDnsCache.php2
-rw-r--r--lib/private/Memcache/Redis.php2
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/private/Http/Client/NegativeDnsCache.php b/lib/private/Http/Client/NegativeDnsCache.php
index 550d75a9c08..631fa19c90f 100644
--- a/lib/private/Http/Client/NegativeDnsCache.php
+++ b/lib/private/Http/Client/NegativeDnsCache.php
@@ -46,6 +46,6 @@ class NegativeDnsCache {
}
public function isNegativeCached(string $domain, int $type) : bool {
- return $this->cache->hasKey($this->createCacheKey($domain, $type));
+ return (bool)$this->cache->hasKey($this->createCacheKey($domain, $type));
}
}
diff --git a/lib/private/Memcache/Redis.php b/lib/private/Memcache/Redis.php
index 56470afa0c5..303b3afb67e 100644
--- a/lib/private/Memcache/Redis.php
+++ b/lib/private/Memcache/Redis.php
@@ -69,7 +69,7 @@ class Redis extends Cache implements IMemcacheTTL {
}
public function hasKey($key) {
- return self::$cache->exists($this->getNameSpace() . $key);
+ return (bool)self::$cache->exists($this->getNameSpace() . $key);
}
public function remove($key) {