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 (#36)
by Jacob
48:52 queued 21:38
created
tests/spec/Exceptions/InvalidArgumentSpec.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -5,7 +5,6 @@
 block discarded – undo
5 5
 use DusanKasan\Knapsack\Exceptions\InvalidArgument;
6 6
 use DusanKasan\Knapsack\Exceptions\RuntimeException;
7 7
 use PhpSpec\ObjectBehavior;
8
-use Prophecy\Argument;
9 8
 
10 9
 /**
11 10
  * @mixin InvalidArgument
Please login to merge, or discard this patch.
tests/spec/Exceptions/InvalidReturnValueSpec.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,6 @@
 block discarded – undo
4 4
 
5 5
 use DusanKasan\Knapsack\Exceptions\RuntimeException;
6 6
 use PhpSpec\ObjectBehavior;
7
-use Prophecy\Argument;
8 7
 
9 8
 class InvalidReturnValueSpec extends ObjectBehavior
10 9
 {
Please login to merge, or discard this patch.
tests/spec/Exceptions/ItemNotFoundSpec.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,6 @@
 block discarded – undo
4 4
 
5 5
 use DusanKasan\Knapsack\Exceptions\ItemNotFound;
6 6
 use PhpSpec\ObjectBehavior;
7
-use Prophecy\Argument;
8 7
 use RuntimeException;
9 8
 
10 9
 /**
Please login to merge, or discard this patch.
tests/spec/Exceptions/NoMoreItemsSpec.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -5,7 +5,6 @@
 block discarded – undo
5 5
 use DusanKasan\Knapsack\Exceptions\NoMoreItems;
6 6
 use DusanKasan\Knapsack\Exceptions\RuntimeException;
7 7
 use PhpSpec\ObjectBehavior;
8
-use Prophecy\Argument;
9 8
 
10 9
 /**
11 10
  * @mixin NoMoreItems
Please login to merge, or discard this patch.
src/Collection.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -56,7 +56,7 @@
 block discarded – undo
56 56
      * $function to the last value in the collection. By default this produces an infinite collection. However you can
57 57
      * end the collection by throwing a NoMoreItems exception.
58 58
      *
59
-     * @param mixed $input
59
+     * @param integer[] $input
60 60
      * @param callable $function
61 61
      * @return Collection
62 62
      */
Please login to merge, or discard this patch.