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 ( 6c2a09...c47409 )
by Florian
03:18
created
Command/SyncCommand.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -135,7 +135,9 @@
 block discarded – undo
135 135
 		foreach($entities as $entity) {
136 136
 			if($this->getEntityToDocumentMapper()->isIndexable($entity)) {
137 137
 				$document = $this->getEntityToDocumentMapper()->createDocument($entityManager, $entity);
138
-				if($document === false) continue;
138
+				if($document === false) {
139
+					continue;
140
+				}
139 141
 				$this->getSearchService($entityManager)->saveDocument($document);
140 142
 				$entitiesIndexed++;
141 143
 				if($entitiesIndexed % 50 == 0) {
Please login to merge, or discard this patch.