Use proper type

This is a string
This commit is contained in:
Lukas Reschke 2015-06-19 21:00:42 +02:00
parent 5ed9743570
commit 1ead0b6f95
2 changed files with 2 additions and 2 deletions

View File

@ -245,7 +245,7 @@ class Manager extends PublicEmitter implements IGroupManager {
/**
* Checks if a userId is in a group
* @param string $userId
* @param group $group
* @param string $group
* @return bool if in group
*/
public function isInGroup($userId, $group) {

View File

@ -127,7 +127,7 @@ interface IGroupManager {
/**
* Checks if a userId is in a group
* @param string $userId
* @param group $group
* @param string $group
* @return bool if in group
* @since 8.0.0
*/