Completed
Push — master ( 511324...c26f0f )
by Konstantinos
08:12
created
src/Model/BaseModel.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -275,7 +275,7 @@
 block discarded – undo
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
      *
Please login to merge, or discard this patch.
models/Player.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -371,7 +371,7 @@
 block discarded – undo
371 371
 
372 372
     /**
373 373
      * Get all of the callsigns a player has used to log in to the website
374
-     * @return string[] An array containing all of the past callsigns recorded for a player
374
+     * @return integer[] An array containing all of the past callsigns recorded for a player
375 375
      */
376 376
     public function getPastCallsigns()
377 377
     {
Please login to merge, or discard this patch.
models/Team.php 1 patch
Doc Comments   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -254,7 +254,6 @@  discard block
 block discarded – undo
254 254
     /**
255 255
      * Get the description of the team
256 256
      *
257
-     * @param  bool $md false for HTML format, true for the original markdown
258 257
      * @return string  The description of the team
259 258
      */
260 259
     public function getDescription()
@@ -515,7 +514,7 @@  discard block
 block discarded – undo
515 514
     /**
516 515
      * Find if a specific match is the team's last one
517 516
      *
518
-     * @param  int|Match $match The match
517
+     * @param  Match $match The match
519 518
      * @return bool
520 519
      */
521 520
     public function isLastMatch($match)
Please login to merge, or discard this patch.
src/Database.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -296,7 +296,7 @@
 block discarded – undo
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
     {
Please login to merge, or discard this patch.