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 ( 7386b2...0aa0d8 )
by Constantin
04:33 queued 01:31
created
src/Gica/CodeAnalysis/ClassDiscovery.php 1 patch
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -80,8 +80,9 @@
 block discarded – undo
80 80
         }
81 81
 
82 82
         $namespace = $m['namespace'];
83
-        if ($namespace)
84
-            $namespace = '\\' . $namespace;
83
+        if ($namespace) {
84
+                    $namespace = '\\' . $namespace;
85
+        }
85 86
 
86 87
 
87 88
         $fqn = $namespace . '\\' . $unqualifiedClassName;
Please login to merge, or discard this patch.
src/Gica/CodeAnalysis/MethodListenerDiscovery.php 1 patch
Braces   +6 added lines, -4 removed lines patch added patch discarded remove patch
@@ -97,8 +97,9 @@  discard block
 block discarded – undo
97 97
         }
98 98
 
99 99
         $namespace = $m['namespace'];
100
-        if ($namespace)
101
-            $namespace = '\\' . $namespace;
100
+        if ($namespace) {
101
+                    $namespace = '\\' . $namespace;
102
+        }
102 103
 
103 104
 
104 105
         $fqn = $namespace . '\\' . $unqualifiedClassName;
@@ -203,8 +204,9 @@  discard block
 block discarded – undo
203 204
 
204 205
     private function isValidListenerMethod(\ReflectionMethod $reflectionMethod)
205 206
     {
206
-        if ($reflectionMethod->getNumberOfParameters() == 0)
207
-            return false;
207
+        if ($reflectionMethod->getNumberOfParameters() == 0) {
208
+                    return false;
209
+        }
208 210
 
209 211
         return true;
210 212
     }
Please login to merge, or discard this patch.
src/Gica/CodeAnalysis/AggregateEventHandlersValidator.php 1 patch
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -80,8 +80,9 @@
 block discarded – undo
80 80
         }
81 81
 
82 82
         $namespace = $m['namespace'];
83
-        if ($namespace)
84
-            $namespace = '\\' . $namespace;
83
+        if ($namespace) {
84
+                    $namespace = '\\' . $namespace;
85
+        }
85 86
 
86 87
 
87 88
         $fqn = $namespace . '\\' . $unqualifiedClassName;
Please login to merge, or discard this patch.