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 = 9-9 lines in 2 locations

src/AbstractWorkflow.php 2 locations

@@ 414-422 (lines=9) @@
411
            $joinSteps = [];
412
            $joinSteps[] = $step;
413
414
            foreach ($currentSteps as $currentStep) {
415
                if ($currentStep->getId() !== $step->getId()) {
416
                    $stepDesc = $wf->getStep($currentStep->getStepId());
417
418
                    if ($stepDesc->resultsInJoin($join)) {
419
                        $joinSteps[] = $currentSteps;
420
                    }
421
                }
422
            }
423
424
            $historySteps = $store->findHistorySteps($entry->getId());
425
@@ 426-434 (lines=9) @@
423
424
            $historySteps = $store->findHistorySteps($entry->getId());
425
426
            foreach ($historySteps as $historyStep) {
427
                if ($historyStep->getId() !== $step->getId()) {
428
                    $stepDesc = $wf->getStep($historyStep->getStepId());
429
430
                    if ($stepDesc->resultsInJoin($join)) {
431
                        $joinSteps[] = $currentSteps;
432
                    }
433
                }
434
            }
435
436
            $jn = new JoinNodes($joinSteps);
437
            $transientVars['jn'] = $jn;