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.
Passed
Branch master (5be26e)
by Casper
03:26 queued 42s
created
src/NMeta.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -100,8 +100,8 @@  discard block
 block discarded – undo
100 100
         // Parse platform
101 101
         if (!isset($headerArr[0]) || !in_array($headerArr[0], $this->platforms)) {
102 102
             throw new BadRequestException($config->getHeader() . ' header: Platform is not supported, should be: ' .
103
-                                          implode(',', $this->platforms) .
104
-                                          ' -  format:' . $format);
103
+                                            implode(',', $this->platforms) .
104
+                                            ' -  format:' . $format);
105 105
         }
106 106
 
107 107
         $this->platform = $headerArr[0];
@@ -109,8 +109,8 @@  discard block
 block discarded – undo
109 109
         // Parse env
110 110
         if (!isset($headerArr[1]) || !in_array($headerArr[1], $this->environments)) {
111 111
             throw new BadRequestException($config->getHeader() . ' header: Environment is not supported, should be: ' .
112
-                                          implode(',', $this->environments) .
113
-                                          ' -  format:' . $format);
112
+                                            implode(',', $this->environments) .
113
+                                            ' -  format:' . $format);
114 114
         }
115 115
 
116 116
         $this->environment = $headerArr[1];
@@ -134,7 +134,7 @@  discard block
 block discarded – undo
134 134
         // Parse device os version
135 135
         if (!isset($headerArr[3])) {
136 136
             throw new BadRequestException('Meta header: Missing device os version' .
137
-                                          ' -  format:' . $format);
137
+                                            ' -  format:' . $format);
138 138
         }
139 139
 
140 140
         $this->deviceOsVersion = $headerArr[3];
Please login to merge, or discard this patch.