1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2025-12-12 21:54:03 +00:00

Apply fixes from StyleCI

This commit is contained in:
stancl 2019-09-21 17:58:40 +00:00 committed by StyleCI Bot
parent 4bd2d43e9b
commit fdcea15b6a

View file

@ -188,7 +188,7 @@ class RedisStorageDriver implements StorageDriver
$json_data = $this->redis->hget("tenants:{$tenant->id}", $key);
if ($json_data === false) {
return null;
return;
}
return json_decode($json_data, true);