mirror of
https://github.com/archtechx/tenancy.git
synced 2025-12-12 17:44:04 +00:00
Apply fixes from StyleCI
This commit is contained in:
parent
314b2d3003
commit
1818e590e0
1 changed files with 2 additions and 0 deletions
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue