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
Pull Request — develop (#39)
by Tom Van
02:25
created
src/Adapter/MapperInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,5 +33,5 @@
 block discarded – undo
33 33
      *
34 34
      * @return void
35 35
      */
36
-    public function map(array $input, MetadataInterface &$output);
36
+    public function map(array $input, MetadataInterface & $output);
37 37
 }
Please login to merge, or discard this patch.
src/Data/ValueObject/MeasuredObject.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -114,6 +114,6 @@
 block discarded – undo
114 114
      */
115 115
     public function __toString()
116 116
     {
117
-        return (string) $this->getValue() . (string) $this->getUnit();
117
+        return (string) $this->getValue().(string) $this->getUnit();
118 118
     }
119 119
 }
Please login to merge, or discard this patch.
src/Data/ValueObject/LineResolution.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -59,7 +59,7 @@
 block discarded – undo
59 59
     public static function fromLineResolution(LineResolution $resolution)
60 60
     {
61 61
         return new self(
62
-            $resolution->getValue() . '/1',
62
+            $resolution->getValue().'/1',
63 63
             (clone $resolution->getUnit())
64 64
         );
65 65
     }
Please login to merge, or discard this patch.