Little bit of code cleanup

Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
This commit is contained in:
Roeland Jago Douma 2017-10-19 11:05:24 +02:00
parent a6760560c6
commit 4388ec2231
No known key found for this signature in database
GPG Key ID: F941078878347C0C
1 changed files with 5 additions and 5 deletions

View File

@ -65,7 +65,7 @@ abstract class Proxy {
static $db; static $db;
static $coreUserManager; static $coreUserManager;
static $coreNotificationManager; static $coreNotificationManager;
if(is_null($fs)) { if($fs === null) {
$ocConfig = \OC::$server->getConfig(); $ocConfig = \OC::$server->getConfig();
$fs = new FilesystemHelper(); $fs = new FilesystemHelper();
$log = new LogWrapper(); $log = new LogWrapper();
@ -158,7 +158,7 @@ abstract class Proxy {
*/ */
private function getCacheKey($key) { private function getCacheKey($key) {
$prefix = 'LDAP-Proxy-'; $prefix = 'LDAP-Proxy-';
if(is_null($key)) { if($key === null) {
return $prefix; return $prefix;
} }
return $prefix.md5($key); return $prefix.md5($key);
@ -187,16 +187,16 @@ abstract class Proxy {
* @param mixed $value * @param mixed $value
*/ */
public function writeToCache($key, $value) { public function writeToCache($key, $value) {
if(is_null($this->cache)) { if($this->cache === null) {
return; return;
} }
$key = $this->getCacheKey($key); $key = $this->getCacheKey($key);
$value = base64_encode(json_encode($value)); $value = base64_encode(json_encode($value));
$this->cache->set($key, $value, '2592000'); $this->cache->set($key, $value, 2592000);
} }
public function clearCache() { public function clearCache() {
if(is_null($this->cache)) { if($this->cache === null) {
return; return;
} }
$this->cache->clear($this->getCacheKey(null)); $this->cache->clear($this->getCacheKey(null));