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
Branch master (75c075)
by Rudie
02:56
created
Category
src/PathAwareJsonListener.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -102,7 +102,7 @@
 block discarded – undo
102 102
 	protected function setValue(array &$container, array $key, $value) {
103 103
 		$element = &$container;
104 104
 		foreach ($key as $subkey) {
105
-			$element =& $element[$subkey];
105
+			$element = & $element[$subkey];
106 106
 		}
107 107
 		$element = $value;
108 108
 	}
Please login to merge, or discard this patch.
examples/data.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@
 block discarded – undo
29 29
 			}
30 30
 			// Or remove all remembered buffer for this user
31 31
 			else {
32
-				unset($this->value['users'][ $path[1] ]);
32
+				unset($this->value['users'][$path[1]]);
33 33
 			}
34 34
 		}
35 35
 	}
Please login to merge, or discard this patch.