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 ( 0ac9c0...ea6201 )
by Alex
13:17
created
Trigger/Event/ActionListener.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -80,7 +80,7 @@
 block discarded – undo
80 80
 
81 81
         foreach ($actions as $action) {
82 82
             $this->execute(
83
-                function () use ($workflowContext, $action) {
83
+                function() use ($workflowContext, $action) {
84 84
                     $this->actionExecutor->execute($workflowContext, $action->getName(), $action->getArguments());
85 85
                 },
86 86
                 $eventName,
Please login to merge, or discard this patch.
Trigger/Event/SchedulerListener.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -81,7 +81,7 @@
 block discarded – undo
81 81
 
82 82
         foreach ($actions as $scheduledAction) {
83 83
             $this->execute(
84
-                function () use ($workflowContext, $scheduledAction) {
84
+                function() use ($workflowContext, $scheduledAction) {
85 85
                     $this->actionScheduler->scheduleAction($workflowContext, $scheduledAction);
86 86
                 },
87 87
                 $eventName,
Please login to merge, or discard this patch.
Trigger/Event/ExpressionListener.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -73,7 +73,7 @@
 block discarded – undo
73 73
         $expression = $this->supportedEventsConfig[$eventName][$workflowContext->getWorkflow()->getName()]['expression'];
74 74
 
75 75
         $this->execute(
76
-            function () use ($expression, $event, $workflowContext) {
76
+            function() use ($expression, $event, $workflowContext) {
77 77
                 $this->actionLanguage->evaluate($expression, ['event' => $event, 'workflowContext' => $workflowContext]);
78 78
             },
79 79
             $eventName,
Please login to merge, or discard this patch.