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 ( 375002...b749d3 )
by Jasper
01:41
created
src/PHPUnit/Constraint/IsEqual.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -4,7 +4,7 @@  discard block
 block discarded – undo
4 4
  * @license https://github.com/f500/equatable/blob/master/LICENSE MIT
5 5
  */
6 6
 
7
-declare(strict_types=1);
7
+declare(strict_types = 1);
8 8
 
9 9
 namespace F500\Equatable\PHPUnit\Constraint;
10 10
 
@@ -80,7 +80,7 @@  discard block
 block discarded – undo
80 80
         );
81 81
 
82 82
         throw new ExpectationFailedException(
83
-            trim($description . "\n" . $comparisonFailure->getMessage()),
83
+            trim($description."\n".$comparisonFailure->getMessage()),
84 84
             $comparisonFailure
85 85
         );
86 86
     }
Please login to merge, or discard this patch.
src/PHPUnit/EquatableAssertionCapabilities.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,7 @@
 block discarded – undo
4 4
  * @license https://github.com/f500/equatable/blob/master/LICENSE MIT
5 5
  */
6 6
 
7
-declare(strict_types=1);
7
+declare(strict_types = 1);
8 8
 
9 9
 namespace F500\Equatable\PHPUnit;
10 10
 
Please login to merge, or discard this patch.
src/Equatable.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,7 @@
 block discarded – undo
4 4
  * @license https://github.com/f500/equatable/blob/master/LICENSE MIT
5 5
  */
6 6
 
7
-declare(strict_types=1);
7
+declare(strict_types = 1);
8 8
 
9 9
 namespace F500\Equatable;
10 10
 
Please login to merge, or discard this patch.
src/Map.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,7 @@
 block discarded – undo
4 4
  * @license https://github.com/f500/equatable/blob/master/LICENSE MIT
5 5
  */
6 6
 
7
-declare(strict_types=1);
7
+declare(strict_types = 1);
8 8
 
9 9
 namespace F500\Equatable;
10 10
 
Please login to merge, or discard this patch.
src/PHPUnit/Constraint/EquatableCollectionContains.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -4,7 +4,7 @@  discard block
 block discarded – undo
4 4
  * @license https://github.com/f500/equatable/blob/master/LICENSE MIT
5 5
  */
6 6
 
7
-declare(strict_types=1);
7
+declare(strict_types = 1);
8 8
 
9 9
 namespace F500\Equatable\PHPUnit\Constraint;
10 10
 
@@ -41,11 +41,11 @@  discard block
 block discarded – undo
41 41
     protected function failureDescription($other)
42 42
     {
43 43
         if ($other instanceof Map) {
44
-            return 'an equatable map ' . $this->toString();
44
+            return 'an equatable map '.$this->toString();
45 45
         }
46 46
 
47 47
         if ($other instanceof Vector) {
48
-            return 'an equatable vector ' . $this->toString();
48
+            return 'an equatable vector '.$this->toString();
49 49
         }
50 50
 
51 51
         return parent::failureDescription($other);
Please login to merge, or discard this patch.
src/Exceptions/InRangeException.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,7 @@
 block discarded – undo
4 4
  * @license https://github.com/f500/equatable/blob/master/LICENSE MIT
5 5
  */
6 6
 
7
-declare(strict_types=1);
7
+declare(strict_types = 1);
8 8
 
9 9
 namespace F500\Equatable\Exceptions;
10 10
 
Please login to merge, or discard this patch.
src/Collection.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,7 @@
 block discarded – undo
4 4
  * @license https://github.com/f500/equatable/blob/master/LICENSE MIT
5 5
  */
6 6
 
7
-declare(strict_types=1);
7
+declare(strict_types = 1);
8 8
 
9 9
 namespace F500\Equatable;
10 10
 
Please login to merge, or discard this patch.
src/Vector.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,7 @@
 block discarded – undo
4 4
  * @license https://github.com/f500/equatable/blob/master/LICENSE MIT
5 5
  */
6 6
 
7
-declare(strict_types=1);
7
+declare(strict_types = 1);
8 8
 
9 9
 namespace F500\Equatable;
10 10
 
Please login to merge, or discard this patch.
src/Exceptions/InvalidArgumentException.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,7 @@
 block discarded – undo
4 4
  * @license https://github.com/f500/equatable/blob/master/LICENSE MIT
5 5
  */
6 6
 
7
-declare(strict_types=1);
7
+declare(strict_types = 1);
8 8
 
9 9
 namespace F500\Equatable\Exceptions;
10 10
 
Please login to merge, or discard this patch.