From 1818e590e0ae766edcf888825c0e93eb403bf939 Mon Sep 17 00:00:00 2001 From: stancl Date: Mon, 19 Aug 2019 08:56:13 +0000 Subject: [PATCH] Apply fixes from StyleCI --- src/TenantManager.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/TenantManager.php b/src/TenantManager.php index 417c661d..111d0e51 100644 --- a/src/TenantManager.php +++ b/src/TenantManager.php @@ -282,11 +282,13 @@ final class TenantManager if (\is_array($key)) { $data = $this->storage->getMany($uuid, $key); $data = $this->useJson() ? $this->jsonDecodeArrayValues($data) : $data; + return $data; } $data = $this->storage->get($uuid, $key); $data = $this->useJson() ? \json_decode($data, true) : $data; + return $data; }