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.
Completed
Push — master ( 134d1e...472741 )
by Jasper
11:47
created
src/PHPUnit/Constraint/IsEqual.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -95,7 +95,7 @@
 block discarded – undo
95 95
         );
96 96
 
97 97
         throw new ExpectationFailedException(
98
-            trim($description . "\n" . $comparisonFailure->getMessage()),
98
+            trim($description."\n".$comparisonFailure->getMessage()),
99 99
             $comparisonFailure
100 100
         );
101 101
     }
Please login to merge, or discard this patch.
src/PHPUnit/Constraint/EquatableCollectionContains.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -56,11 +56,11 @@
 block discarded – undo
56 56
     protected function failureDescription($other): string
57 57
     {
58 58
         if ($other instanceof Map) {
59
-            return 'an equatable map ' . $this->toString();
59
+            return 'an equatable map '.$this->toString();
60 60
         }
61 61
 
62 62
         if ($other instanceof Vector) {
63
-            return 'an equatable vector ' . $this->toString();
63
+            return 'an equatable vector '.$this->toString();
64 64
         }
65 65
 
66 66
         return parent::failureDescription($other);
Please login to merge, or discard this patch.