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 ( 1e4e2d...df200b )
by Florian
20s
created
Services/DoctrineListener.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -141,7 +141,9 @@
 block discarded – undo
141 141
 	 * @param LifecycleEventArgs $args
142 142
 	 */
143 143
 	public function postUpdate(LifecycleEventArgs $args): void {
144
-		if (!$this->enableIndexing) return;
144
+		if (!$this->enableIndexing) {
145
+			return;
146
+		}
145 147
 		$this->updateEntity($args->getObject(), $args->getObjectManager());
146 148
 	}
147 149
 
Please login to merge, or discard this patch.