@@ -252,6 +252,10 @@ |
||
| 252 | 252 | return false; |
| 253 | 253 | } |
| 254 | 254 | |
| 255 | + /** |
|
| 256 | + * @param Request $request |
|
| 257 | + * @param integer $type |
|
| 258 | + */ |
|
| 255 | 259 | private function handleException(Exception $e, $request, $type) |
| 256 | 260 | { |
| 257 | 261 | $event = new GetResponseForExceptionEvent($this, $request, $type, $e); |
@@ -34,6 +34,9 @@ discard block |
||
| 34 | 34 | |
| 35 | 35 | const CAUTION_LINE_LENGTH = 60; |
| 36 | 36 | |
| 37 | + /** |
|
| 38 | + * @param Event $event |
|
| 39 | + */ |
|
| 37 | 40 | public function __construct($event) |
| 38 | 41 | { |
| 39 | 42 | $this->event = $event; |
@@ -190,7 +193,7 @@ discard block |
||
| 190 | 193 | /** |
| 191 | 194 | * Write a warning if necessary |
| 192 | 195 | * |
| 193 | - * @param VariableNode $node The node with the warning |
|
| 196 | + * @param NodeInterface $node The node with the warning |
|
| 194 | 197 | */ |
| 195 | 198 | private function writeWarning($node) |
| 196 | 199 | { |
@@ -9,7 +9,6 @@ |
||
| 9 | 9 | namespace BZIon\Composer; |
| 10 | 10 | |
| 11 | 11 | use BZIon\Config\Configuration; |
| 12 | -use Composer\Script\Event; |
|
| 13 | 12 | use Symfony\Component\Config\Definition\ArrayNode; |
| 14 | 13 | use Symfony\Component\Config\Definition\EnumNode; |
| 15 | 14 | use Symfony\Component\Config\Definition\NodeInterface; |
@@ -201,7 +201,7 @@ |
||
| 201 | 201 | * Get a redirection response to a list of models |
| 202 | 202 | * |
| 203 | 203 | * @param ModelInterface $model The model to whose list we should redirect |
| 204 | - * @return Response |
|
| 204 | + * @return string |
|
| 205 | 205 | */ |
| 206 | 206 | protected function redirectToList($model) |
| 207 | 207 | { |
@@ -82,6 +82,7 @@ |
||
| 82 | 82 | |
| 83 | 83 | /** |
| 84 | 84 | * {@inheritdoc} |
| 85 | + * @param string $action |
|
| 85 | 86 | */ |
| 86 | 87 | public function callAction($action = null) |
| 87 | 88 | { |
@@ -155,7 +155,7 @@ |
||
| 155 | 155 | /** |
| 156 | 156 | * Get the total duration of the database queries in milliseconds |
| 157 | 157 | * |
| 158 | - * @return float |
|
| 158 | + * @return integer |
|
| 159 | 159 | */ |
| 160 | 160 | public function getDuration() |
| 161 | 161 | { |
@@ -122,6 +122,8 @@ |
||
| 122 | 122 | |
| 123 | 123 | /** |
| 124 | 124 | * {@inheritdoc} |
| 125 | + * @param \Symfony\Component\Form\Form $form |
|
| 126 | + * @param \Player $player |
|
| 125 | 127 | */ |
| 126 | 128 | public function update($form, $player) |
| 127 | 129 | { |
@@ -160,7 +160,7 @@ |
||
| 160 | 160 | * Get the player list of a team |
| 161 | 161 | * |
| 162 | 162 | * @param FormInterface $team A MatchTeamType form |
| 163 | - * @return array |
|
| 163 | + * @return integer[] |
|
| 164 | 164 | */ |
| 165 | 165 | private function getPlayerList(FormInterface $team) |
| 166 | 166 | { |
@@ -296,7 +296,7 @@ |
||
| 296 | 296 | * |
| 297 | 297 | * Prevents PDO from being erroneously serialized |
| 298 | 298 | * |
| 299 | - * @return array The list of properties that should be serialized |
|
| 299 | + * @return string[] The list of properties that should be serialized |
|
| 300 | 300 | */ |
| 301 | 301 | public function __sleep() |
| 302 | 302 | { |
@@ -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 |