Remove not needed semicolon and PHPDoc hint

Signed-off-by: Morris Jobke <hey@morrisjobke.de>
This commit is contained in:
Morris Jobke 2020-09-16 16:18:43 +02:00
parent a72edb0d0e
commit d3680e682a
No known key found for this signature in database
GPG Key ID: FE03C3A163FEDE68
2 changed files with 1 additions and 2 deletions

View File

@ -214,7 +214,7 @@ class UsersController extends Controller {
$groups[$key]['usercount']--; $groups[$key]['usercount']--;
$userCount -= 1; // we also lower from one the total count $userCount -= 1; // we also lower from one the total count
} }
}; }
$userCount += $this->userManager->countUsersOfGroups($groupsInfo->getGroups()); $userCount += $this->userManager->countUsersOfGroups($groupsInfo->getGroups());
$disabledUsers = $this->userManager->countDisabledUsersOfGroups($groupsNames); $disabledUsers = $this->userManager->countDisabledUsersOfGroups($groupsNames);
} }

View File

@ -55,7 +55,6 @@ class MetaData {
* @param string $user the uid of the current user * @param string $user the uid of the current user
* @param bool $isAdmin whether the current users is an admin * @param bool $isAdmin whether the current users is an admin
* @param IGroupManager $groupManager * @param IGroupManager $groupManager
* @param IUserManager $userManager
* @param IUserSession $userSession * @param IUserSession $userSession
*/ */
public function __construct( public function __construct(