summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
Diffstat (limited to 'apps')
-rw-r--r--apps/user_ldap/lib/Proxy.php21
1 files changed, 7 insertions, 14 deletions
diff --git a/apps/user_ldap/lib/Proxy.php b/apps/user_ldap/lib/Proxy.php
index 96bb670b789..805348e7775 100644
--- a/apps/user_ldap/lib/Proxy.php
+++ b/apps/user_ldap/lib/Proxy.php
@@ -169,24 +169,17 @@ abstract class Proxy {
* @return mixed|null
*/
public function getFromCache($key) {
- if(is_null($this->cache) || !$this->isCached($key)) {
+ if($this->cache === null) {
return null;
}
- $key = $this->getCacheKey($key);
-
- return json_decode(base64_decode($this->cache->get($key)));
- }
- /**
- * @param string $key
- * @return bool
- */
- public function isCached($key) {
- if(is_null($this->cache)) {
- return false;
- }
$key = $this->getCacheKey($key);
- return $this->cache->hasKey($key);
+ $value = $this->cache->get($key);
+ if ($value === null) {
+ return null;
+ }
+
+ return json_decode(base64_decode($value));
}
/**