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
Push — master ( 19d49d...759cfa )
by Marius
13:36
created
src/infrastructure/urls/UrlParserA.php 1 patch
Switch Indentation   +16 added lines, -16 removed lines patch added patch discarded remove patch
@@ -263,22 +263,22 @@
 block discarded – undo
263 263
 		$iCnt = 0;
264 264
 		foreach ($aPath as $iKey => $sFolder) {
265 265
 			switch ($sFolder) {
266
-				case '..':
267
-					$iCnt++;
268
-
269
-					unset ($aPath[$iKey]);
270
-					if (array_key_exists($iKey - 1, $aPath)) {
271
-						$iPrevKey = $iKey - 1;
272
-					} else {
273
-						$sPrev = prev($aPath);
274
-						$iPrevKey = array_search($sPrev, $aPath);
275
-					}
276
-					unset ($aPath[$iPrevKey]);
277
-					break;
278
-				case '.':
279
-				case '':
280
-					unset ($aPath[$iKey]);
281
-					break;
266
+			case '..':
267
+				$iCnt++;
268
+
269
+				unset ($aPath[$iKey]);
270
+				if (array_key_exists($iKey - 1, $aPath)) {
271
+					$iPrevKey = $iKey - 1;
272
+				} else {
273
+					$sPrev = prev($aPath);
274
+					$iPrevKey = array_search($sPrev, $aPath);
275
+				}
276
+				unset ($aPath[$iPrevKey]);
277
+				break;
278
+			case '.':
279
+			case '':
280
+				unset ($aPath[$iKey]);
281
+				break;
282 282
 			}
283 283
 		}
284 284
 
Please login to merge, or discard this patch.