1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2025-12-13 01:44:04 +00:00

Fix Redis scan for 5.8 (#46)

* Fix Redis scan for 5.8

* Add comments [ci skip]
This commit is contained in:
Samuel Štancl 2019-04-24 16:53:43 +02:00 committed by GitHub
parent beb9a0a903
commit 35abb6191d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 10 additions and 3 deletions

View file

@ -202,7 +202,7 @@ class TenantManager
*/
public function all($uuids = [])
{
$uuid = (array) $uuids;
$uuids = (array) $uuids;
return collect(array_map(function ($tenant_array) {
return $this->jsonDecodeArrayValues($tenant_array);