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.
Test Setup Failed
Push — master ( d3d228...9a3e09 )
by Haven
09:48 queued 16s
created
app/Middleware/CsrfViewMiddleware.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -20,10 +20,10 @@
 block discarded – undo
20 20
 
21 21
 		$this->container->get('view')->getEnvironment()->addGlobal('csrf', [
22 22
 			'field' => '
23
-				<input type="hidden" name="'. $this->container->get('csrf')->getTokenNameKey() .'"
24
-				 value="'. $this->container->get('csrf')->getTokenName() .'">
25
-				<input type="hidden" name="'. $this->container->get('csrf')->getTokenValueKey() .'"
26
-				 value="'. $this->container->get('csrf')->getTokenValue() .'">
23
+				<input type="hidden" name="'. $this->container->get('csrf')->getTokenNameKey() . '"
24
+				 value="'. $this->container->get('csrf')->getTokenName() . '">
25
+				<input type="hidden" name="'. $this->container->get('csrf')->getTokenValueKey() . '"
26
+				 value="'. $this->container->get('csrf')->getTokenValue() . '">
27 27
 			',
28 28
 		]);
29 29
 
Please login to merge, or discard this patch.
app/Middleware/GuestMiddleware.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,6 +22,6 @@
 block discarded – undo
22 22
 		}
23 23
 
24 24
 		$response = $handler->handle($request);
25
-        return $response;
25
+		return $response;
26 26
 	}
27 27
 }
28 28
\ No newline at end of file
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
 
18 18
 	public function __invoke(Request $request, RequestHandler $handler): Response
19 19
 	{
20
-		if($this->container->get('auth')->check()) {
20
+		if ($this->container->get('auth')->check()) {
21 21
 			return $response->withRedirect($this->container->get('router')->urlFor('home'));
22 22
 		}
23 23
 
Please login to merge, or discard this patch.