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.
Passed
Push — master ( 41c136...25e61d )
by Odiseo
09:14
created
src/Payum/Action/CaptureAction.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -214,7 +214,7 @@
 block discarded – undo
214 214
                     $request->getToken()->getGatewayName(),
215 215
                     $request->getToken()->getDetails()
216 216
                 );
217
-                $preference->__set('notification_url', $notifyToken->getTargetUrl().'?source_news=webhooks');
217
+                $preference->__set('notification_url', $notifyToken->getTargetUrl() . '?source_news=webhooks');
218 218
 
219 219
                 $preference->__set('auto_return', 'all');
220 220
 
Please login to merge, or discard this patch.
src/Payum/Action/NotifyAction.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -58,11 +58,11 @@
 block discarded – undo
58 58
     private function log(array $data): void
59 59
     {
60 60
         // Todo use a better way to log the information
61
-        $log  = "User: ".$_SERVER['REMOTE_ADDR'].' - '.date("F j, Y, g:i a").PHP_EOL.
62
-            "Attempt: ".(json_encode($data)).PHP_EOL.
63
-            "-------------------------".PHP_EOL;
61
+        $log = "User: " . $_SERVER['REMOTE_ADDR'] . ' - ' . date("F j, Y, g:i a") . PHP_EOL .
62
+            "Attempt: " . (json_encode($data)) . PHP_EOL .
63
+            "-------------------------" . PHP_EOL;
64 64
 
65
-        file_put_contents(__DIR__.'/../../../../../../var/log/mercado_pago_log_'.date("j.n.Y").'.txt', $log, FILE_APPEND);
65
+        file_put_contents(__DIR__ . '/../../../../../../var/log/mercado_pago_log_' . date("j.n.Y") . '.txt', $log, FILE_APPEND);
66 66
     }
67 67
 
68 68
     /**
Please login to merge, or discard this patch.