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 ( 86e0d3...beb630 )
by Jasper
02:09
created
src/EquatableMap.php 2 patches
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -21,6 +21,9 @@
 block discarded – undo
21 21
 
22 22
     public function remove(Equatable $value): self;
23 23
 
24
+    /**
25
+     * @return ImmutableEquatableMap
26
+     */
24 27
     public function replace(string $key, Equatable $value);
25 28
 
26 29
     public function get(string $key): Equatable;
Please login to merge, or discard this 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/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;
10 10
 
Please login to merge, or discard this patch.
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/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 EquatableMap) {
44
-            return 'an equatable map ' . $this->toString();
44
+            return 'an equatable map '.$this->toString();
45 45
         }
46 46
 
47 47
         if ($other instanceof EquatableVector) {
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/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/ImmutableEquatableMap.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/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;
10 10
 
Please login to merge, or discard this patch.
src/ImmutableEquatableVector.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/EquatableVector.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.