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.

Code Duplication    Length = 5-5 lines in 2 locations

src/ServiceEngine/Workflow.php 2 locations

@@ 136-140 (lines=5) @@
133
            $this->getEventManager()->trigger(WorkflowEvent::EVENT_DO_ACTION, $this, $event);
134
135
            $viewName = $action->getView();
136
            if (null !== $viewName) {
137
                $event->setViewName($viewName);
138
                $event->setName(WorkflowEvent::EVENT_RENDER);
139
                $this->getEventManager()->trigger($event);
140
            }
141
        } catch (\Exception $e) {
142
            throw new Exception\DoActionException($e->getMessage(), $e->getCode(), $e);
143
        }
@@ 290-294 (lines=5) @@
287
288
            $initialActions = $wf->getInitialAction($actionId);
289
            $viewName = $initialActions->getView();
290
            if (null !== $viewName) {
291
                $event->setViewName($viewName);
292
                $event->setName(WorkflowEvent::EVENT_RENDER);
293
                $this->getEventManager()->trigger($event);
294
            }
295
        } catch (\Exception $e) {
296
            throw new Exception\InvalidInitializeWorkflowEntryException($e->getMessage(), $e->getCode(), $e);
297
        }