ensure redis returns bool for hasKey

Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
pull/26551/head
Arthur Schiwon 5 years ago
parent 23b8e4a1d4
commit 9f5480eef4
No known key found for this signature in database
GPG Key ID: 7424F1874854DF23
  1. 2
      lib/private/Http/Client/NegativeDnsCache.php
  2. 2
      lib/private/Memcache/Redis.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));
}
}

@ -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) {

Loading…
Cancel
Save