Refactor helper drift in lib: centralize theme/translation and remove app() hotspots
This commit is contained in:
@@ -15,7 +15,7 @@ class UserListQueryRepository implements UserListQueryRepositoryInterface
|
||||
$createdFrom = trim((string) ($options['created_from'] ?? ''));
|
||||
$createdTo = trim((string) ($options['created_to'] ?? ''));
|
||||
$tenant = trim((string) ($options['tenant'] ?? ''));
|
||||
$tenantUuids = array_filter(array_map('trim', explode(',', (string) ($options['tenants'] ?? ''))));
|
||||
$tenantUuids = RepoQuery::normalizeStringList($options['tenants'] ?? []);
|
||||
$roleIds = RepoQuery::normalizeIdList($options['roles'] ?? []);
|
||||
$departmentIds = RepoQuery::normalizeIdList($options['departments'] ?? []);
|
||||
$emailVerified = $options['email_verified'] ?? null;
|
||||
|
||||
Reference in New Issue
Block a user