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