lint: fix php

pull/812/head
Varun Patil 2023-09-08 16:10:29 -07:00
parent a9a25a9555
commit 94d423a9df
1 changed files with 4 additions and 4 deletions

View File

@ -216,10 +216,10 @@ class Index extends Command
if ($group = $this->groupManager->get($gid)) {
foreach ($group->getUsers() as $user) {
$closure($user);
}
} else {
$this->output->writeln("<error>Group {$gid} not found</error>");
}
}
} else {
$this->output->writeln("<error>Group {$gid} not found</error>");
}
} else {
$this->userManager->callForSeenUsers(static fn (IUser $user) => $closure($user));
}