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 — 8.x-2.x ( 24ef53...0e9239 )
by Samuel
55:22
created
src/IniEncoder.php 1 patch
Braces   +3 added lines, -6 removed lines patch added patch discarded remove patch
@@ -40,14 +40,12 @@  discard block
 block discarded – undo
40 40
       if (is_array($value)) {
41 41
         if ($this->isAssociative($value)) {
42 42
           $output = array_merge($output, $this->doEncode($value, $keys));
43
-        }
44
-        else {
43
+        } else {
45 44
           foreach ($value as $j) {
46 45
             $output[] = $this->keysToString($keys) . '[] = ' . $j;
47 46
           }
48 47
         }
49
-      }
50
-      else {
48
+      } else {
51 49
         $output[] = $this->keysToString($keys) . ' = ' . $value;
52 50
       }
53 51
 
@@ -70,8 +68,7 @@  discard block
 block discarded – undo
70 68
     $head = array_shift($keys);
71 69
     if ($keys) {
72 70
       return $head . '[' . implode('][', $keys) . ']';
73
-    }
74
-    else {
71
+    } else {
75 72
       return $head;
76 73
     }
77 74
   }
Please login to merge, or discard this patch.
src/Composer/Package.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -145,8 +145,7 @@
 block discarded – undo
145 145
             list($major, $minor, $patch) = $sem_ver;
146 146
 
147 147
             $tag = "$major.$minor$patch";
148
-          }
149
-          else {
148
+          } else {
150 149
             preg_match('/\d+\.x-\d+\.0/', $tag, $match);
151 150
             $tag = str_replace($match, str_replace('x-', NULL, $match), $tag);
152 151
             preg_match('/\d+\.\d+\.0/', $tag, $match);
Please login to merge, or discard this patch.
src/Composer/PatchedConstraint.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -35,8 +35,7 @@
 block discarded – undo
35 35
       array_unshift($error, 'The following dependencies are patched but don\'t have pinned dependency constraints:');
36 36
       $event->getIO()->writeError($error);
37 37
       return FALSE;
38
-    }
39
-    else {
38
+    } else {
40 39
       $event->getIO()->write('Patched dependencies have constraints that are properly pinned.');
41 40
     }
42 41
   }
Please login to merge, or discard this patch.