Fix code style

This commit is contained in:
Art4 2025-02-24 08:42:54 +00:00
parent f3a8bcff11
commit 82ea62ba7c
4 changed files with 154 additions and 152 deletions

View file

@ -155,9 +155,11 @@ class ACL
$acl_contacts[] = $acl_yourself;
$acl_groups = Contact::selectToArray($fields,
$acl_groups = Contact::selectToArray(
$fields,
['uid' => $user_id, 'self' => false, 'blocked' => false, 'archive' => false, 'deleted' => false,
'network' => Protocol::FEDERATED, 'pending' => false, 'contact-type' => Contact::TYPE_COMMUNITY], $params
'network' => Protocol::FEDERATED, 'pending' => false, 'contact-type' => Contact::TYPE_COMMUNITY],
$params
);
$acl_contacts = array_merge($acl_groups, $acl_contacts);