@@ -54,7 +54,7 @@ discard block |
||
| 54 | 54 | /** |
| 55 | 55 | * Get the member who was kicked |
| 56 | 56 | * |
| 57 | - * @return \Player|\Team |
|
| 57 | + * @return \Player |
|
| 58 | 58 | */ |
| 59 | 59 | public function getKicked() |
| 60 | 60 | { |
@@ -66,7 +66,7 @@ discard block |
||
| 66 | 66 | * |
| 67 | 67 | * Alias for ConversationKickEvent::getKicked() |
| 68 | 68 | * |
| 69 | - * @return \Player|\Team |
|
| 69 | + * @return \Player |
|
| 70 | 70 | */ |
| 71 | 71 | public function getMember() |
| 72 | 72 | { |
@@ -111,7 +111,7 @@ |
||
| 111 | 111 | } |
| 112 | 112 | |
| 113 | 113 | /** |
| 114 | - * @param string|Permission $perm_name |
|
| 114 | + * @param string $perm_name |
|
| 115 | 115 | * @return Permission |
| 116 | 116 | */ |
| 117 | 117 | public static function getPermissionFromName($perm_name) |
@@ -252,7 +252,7 @@ discard block |
||
| 252 | 252 | * @param string $table The database table that will be searched |
| 253 | 253 | * @param string|string[] $select The column that will be returned |
| 254 | 254 | * |
| 255 | - * @return mixed[] A list of values, if $select was only one column, or the return array of $db->query if it was more |
|
| 255 | + * @return integer[] A list of values, if $select was only one column, or the return array of $db->query if it was more |
|
| 256 | 256 | */ |
| 257 | 257 | protected static function fetchIds($additional_query = '', $types = '', $params = array(), $table = "", $select = 'id') |
| 258 | 258 | { |
@@ -292,7 +292,7 @@ discard block |
||
| 292 | 292 | * @param array|mixed $possible_values List of acceptable values |
| 293 | 293 | * @param string $type The type of the values in $possible_values (can be `s`, `i`, `d` or `b`) |
| 294 | 294 | * @param bool $negate Whether to search if the value of $column does NOT belong to the $possible_values array |
| 295 | - * @param string|string[] $select The name of the column(s) that the returned array should contain |
|
| 295 | + * @param string $select The name of the column(s) that the returned array should contain |
|
| 296 | 296 | * @param string $additional_query Additional parameters to be passed to the MySQL query (e.g. `WHERE id = 5`) |
| 297 | 297 | * @param string $table The database table which will be used for queries |
| 298 | 298 | * |