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 ( 64cdc6...78f030 )
by Roeland
72:17
created
lib/Controller/APIController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -79,7 +79,7 @@
 block discarded – undo
79 79
 
80 80
 		$result = [];
81 81
 
82
-		while($data = $cursor->fetch()) {
82
+		while ($data = $cursor->fetch()) {
83 83
 			$result[] = [
84 84
 				'id' => (int)$data['id'],
85 85
 				'tagid' => (int)$data['tag_id'],
Please login to merge, or discard this patch.
lib/BackgroundJob/RetentionJob.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -123,7 +123,7 @@
 block discarded – undo
123 123
 
124 124
 		$offset = 0;
125 125
 		$limit = 1000;
126
-		while(true) {
126
+		while (true) {
127 127
 			$fileids = $this->tagMapper->getObjectIdsForTags($tag, 'files', $limit, $offset);
128 128
 
129 129
 			foreach ($fileids as $fileid) {
Please login to merge, or discard this patch.
lib/AppInfo/Application.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@
 block discarded – undo
30 30
 		$container = $this->getContainer();
31 31
 		$server = $container->getServer();
32 32
 
33
-		$container->registerService('OCP\\Files\\Config\\IUserMountCache', function ($c) use ($server) {
33
+		$container->registerService('OCP\\Files\\Config\\IUserMountCache', function($c) use ($server) {
34 34
 			return $server->getMountProviderCollection()->getMountCache();
35 35
 		});
36 36
 	}
Please login to merge, or discard this patch.