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 (#1)
by Hugues
03:07
created
ReflectionObject.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -161,7 +161,7 @@
 block discarded – undo
161 161
     {
162 162
         return $this
163 163
             ->extractionStrategies
164
-            ->get($this->object,$property)
165
-            ->extract($this->object,$property);
164
+            ->get($this->object, $property)
165
+            ->extract($this->object, $property);
166 166
     }
167 167
 }
Please login to merge, or discard this patch.
Cache/StrategyCachingCapabilities.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@  discard block
 block discarded – undo
33 33
      */
34 34
     private function setCachedStrategy(string $class, string $key, $strategy)
35 35
     {
36
-        $this->strategyCache[$class.'::'.$key] = $strategy;
36
+        $this->strategyCache[$class . '::' . $key] = $strategy;
37 37
 
38 38
         return $this;
39 39
     }
@@ -48,7 +48,7 @@  discard block
 block discarded – undo
48 48
      */
49 49
     private function getCacheKey(string $class, string $key)
50 50
     {
51
-        return $class.'::'.$key;
51
+        return $class . '::' . $key;
52 52
     }
53 53
 
54 54
 }
Please login to merge, or discard this patch.