@@ -354,7 +354,7 @@ |
||
| 354 | 354 | * |
| 355 | 355 | * @param int $playerID The ID of the victim of the ban |
| 356 | 356 | * @param int $authorID The ID of the player responsible for the ban |
| 357 | - * @param mixed|null $expiration The expiration of the ban (set to NULL so that it never expires) |
|
| 357 | + * @param TimeDate|null $expiration The expiration of the ban (set to NULL so that it never expires) |
|
| 358 | 358 | * @param string $reason The full reason for the ban |
| 359 | 359 | * @param string $srvmsg A summary of the ban to be displayed on server banlists (max 150 characters) |
| 360 | 360 | * @param string[] $ipAddresses An array of IPs that have been banned |
@@ -211,7 +211,7 @@ discard block |
||
| 211 | 211 | /** |
| 212 | 212 | * Add a permission to a role |
| 213 | 213 | * |
| 214 | - * @param string|Permission $perm_name The name of the permission to add |
|
| 214 | + * @param Permission $perm_name The name of the permission to add |
|
| 215 | 215 | * |
| 216 | 216 | * @return bool Whether or not the operation was successful |
| 217 | 217 | */ |
@@ -265,7 +265,7 @@ discard block |
||
| 265 | 265 | /** |
| 266 | 266 | * Revoke a permission from a role |
| 267 | 267 | * |
| 268 | - * @param string|Permission $perm_name The permission to remove |
|
| 268 | + * @param Permission $perm_name The permission to remove |
|
| 269 | 269 | * |
| 270 | 270 | * @return bool Whether or not the operation was successful |
| 271 | 271 | */ |
@@ -379,7 +379,7 @@ discard block |
||
| 379 | 379 | |
| 380 | 380 | /** |
| 381 | 381 | * Get all of the callsigns a player has used to log in to the website |
| 382 | - * @return string[] An array containing all of the past callsigns recorded for a player |
|
| 382 | + * @return integer[] An array containing all of the past callsigns recorded for a player |
|
| 383 | 383 | */ |
| 384 | 384 | public function getPastCallsigns() |
| 385 | 385 | { |
@@ -871,7 +871,7 @@ discard block |
||
| 871 | 871 | |
| 872 | 872 | /** |
| 873 | 873 | * Get the (victory/total matches) ratio of the player |
| 874 | - * @return float |
|
| 874 | + * @return integer |
|
| 875 | 875 | */ |
| 876 | 876 | public function getMatchWinRatio() |
| 877 | 877 | { |
@@ -61,7 +61,7 @@ discard block |
||
| 61 | 61 | /** |
| 62 | 62 | * Find if two objects represent the same model |
| 63 | 63 | * |
| 64 | - * @param object $model The model to compare |
|
| 64 | + * @param null|Model $model The model to compare |
|
| 65 | 65 | * @return bool |
| 66 | 66 | */ |
| 67 | 67 | public function isSameAs($model) |
@@ -168,7 +168,7 @@ discard block |
||
| 168 | 168 | * Useful for form validation |
| 169 | 169 | * |
| 170 | 170 | * @param string $property The name of the property to change |
| 171 | - * @param mixed $value The value of the property |
|
| 171 | + * @param string $value The value of the property |
|
| 172 | 172 | * @return self |
| 173 | 173 | */ |
| 174 | 174 | protected function inject($property, $value) |
@@ -275,7 +275,7 @@ discard block |
||
| 275 | 275 | * @param string $column The name of the column that should be tested |
| 276 | 276 | * @param array|mixed $possible_values List of acceptable values |
| 277 | 277 | * @param bool $negate Whether to search if the value of $column does NOT belong to the $possible_values array |
| 278 | - * @param string|string[] $select The name of the column(s) that the returned array should contain |
|
| 278 | + * @param string $select The name of the column(s) that the returned array should contain |
|
| 279 | 279 | * @param string $additional_query Additional parameters to be passed to the MySQL query (e.g. `WHERE id = 5`) |
| 280 | 280 | * @param string $table The database table which will be used for queries |
| 281 | 281 | * |
@@ -342,7 +342,7 @@ discard block |
||
| 342 | 342 | * Get a formatted string with a comma separated column list with table/alias prefixes if necessary. |
| 343 | 343 | * |
| 344 | 344 | * @param string|null $prefix The table name or SQL alias to be prepend to these columns |
| 345 | - * @param array $columns The columns to format |
|
| 345 | + * @param string[] $columns The columns to format |
|
| 346 | 346 | * |
| 347 | 347 | * @return string |
| 348 | 348 | */ |
@@ -275,7 +275,7 @@ discard block |
||
| 275 | 275 | /** |
| 276 | 276 | * Request that a timestamp is before the specified time |
| 277 | 277 | * |
| 278 | - * @param string|TimeDate $time The timestamp to compare to |
|
| 278 | + * @param Carbon\Carbon $time The timestamp to compare to |
|
| 279 | 279 | * @param bool $inclusive Whether to include the given timestamp |
| 280 | 280 | * @param bool $reverse Whether to reverse the results |
| 281 | 281 | * |
@@ -368,7 +368,7 @@ discard block |
||
| 368 | 368 | /** |
| 369 | 369 | * Request that a specific model is not returned |
| 370 | 370 | * |
| 371 | - * @param Model|int $model The ID or model you don't want to get |
|
| 371 | + * @param Player $model The ID or model you don't want to get |
|
| 372 | 372 | * @return static |
| 373 | 373 | */ |
| 374 | 374 | public function except($model) |
@@ -821,6 +821,7 @@ discard block |
||
| 821 | 821 | |
| 822 | 822 | /** |
| 823 | 823 | * Generates all the WHERE conditions for the query |
| 824 | + * @param string $mode |
|
| 824 | 825 | * @return string |
| 825 | 826 | */ |
| 826 | 827 | private function createQueryConditions($mode) |
@@ -1,7 +1,6 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | 3 | use BZIon\Form\Creator\PlayerAdminNotesFormCreator as FormCreator; |
| 4 | -use Carbon\Carbon; |
|
| 5 | 4 | use Symfony\Component\Form\Form; |
| 6 | 5 | use Symfony\Component\HttpFoundation\Request; |
| 7 | 6 | |
@@ -664,7 +664,6 @@ discard block |
||
| 664 | 664 | * Set the server address of the server where this match took place |
| 665 | 665 | * |
| 666 | 666 | * @param string|null $server The server hostname |
| 667 | - * @param int|null $port The server port |
|
| 668 | 667 | * @return self |
| 669 | 668 | */ |
| 670 | 669 | public function setServerAddress($server = null) |
@@ -1099,7 +1098,7 @@ discard block |
||
| 1099 | 1098 | * |
| 1100 | 1099 | * @param int[] $players |
| 1101 | 1100 | * |
| 1102 | - * @return float|int |
|
| 1101 | + * @return integer |
|
| 1103 | 1102 | */ |
| 1104 | 1103 | private static function getAveragePlayerElo($players) |
| 1105 | 1104 | { |