Skip to content

Commit

Permalink
Remove psalm @var annotations which should not be needed
Browse files Browse the repository at this point in the history
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
  • Loading branch information
come-nc committed Aug 28, 2023
1 parent 19bb5db commit fa1f37c
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions apps/provisioning_api/lib/Controller/UsersController.php
Expand Up @@ -208,7 +208,6 @@ public function getUsersDetails(string $search = '', int $limit = null, int $off
$users = array_merge(...$users);
}

/** @var array<string, ProvisioningApiUserDetails|array{id: string}> $usersDetails */
$usersDetails = [];
foreach ($users as $userId) {
$userId = (string) $userId;
Expand Down Expand Up @@ -274,7 +273,6 @@ public function getDisabledUsersDetails(?int $limit = null, int $offset = 0): Da
$users = array_slice($users, $offset);
}

/** @var array<string, ProvisioningApiUserDetails|array{id: string}> $usersDetails */
$usersDetails = [];
foreach ($users as $userId) {
$userData = $this->getUserData($userId);
Expand Down

0 comments on commit fa1f37c

Please sign in to comment.