GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Failed Conditions
Pull Request — master (#10)
by
unknown
02:51
created
src/collection_functions.php 1 patch
Doc Comments   +2 added lines, -3 removed lines patch added patch discarded remove patch
@@ -334,7 +334,7 @@  discard block
 block discarded – undo
334 334
  * Returns a non-lazy collection sorted using $collection($item1, $item2, $key1, $key2 ). $collection should
335 335
  * return true if first item is larger than the second and false otherwise.
336 336
  *
337
- * @param array|Traversable $collection
337
+ * @param Collection $collection
338 338
  * @param callable $function ($value1, $value2, $key1, $key2)
339 339
  * @return Collection
340 340
  */
@@ -414,7 +414,6 @@  discard block
 block discarded – undo
414 414
  * Returns a non-lazy collection of items grouped by the value at given key.
415 415
  *
416 416
  * @param array|Traversable $collection
417
- * @param mixed $key
418 417
  * @return Collection
419 418
  */
420 419
 function groupByKey($collection, $groupKey)
@@ -435,7 +434,7 @@  discard block
 block discarded – undo
435 434
 /**
436 435
  * Executes $function for each item in $collection
437 436
  *
438
- * @param array|Traversable $collection
437
+ * @param Collection $collection
439 438
  * @param callable $function ($value, $key)
440 439
  * @return Collection
441 440
  */
Please login to merge, or discard this patch.