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

@@ 403-411 (lines=9) @@
400
            $joinSteps = [];
401
            $joinSteps[] = $step;
402
403
            foreach ($currentSteps as $currentStep) {
404
                if ($currentStep->getId() !== $step->getId()) {
405
                    $stepDesc = $wf->getStep($currentStep->getStepId());
406
407
                    if ($stepDesc->resultsInJoin($join)) {
408
                        $joinSteps[] = $currentSteps;
409
                    }
410
                }
411
            }
412
413
            $historySteps = $store->findHistorySteps($entry->getId());
414
@@ 415-423 (lines=9) @@
412
413
            $historySteps = $store->findHistorySteps($entry->getId());
414
415
            foreach ($historySteps as $historyStep) {
416
                if ($historyStep->getId() !== $step->getId()) {
417
                    $stepDesc = $wf->getStep($historyStep->getStepId());
418
419
                    if ($stepDesc->resultsInJoin($join)) {
420
                        $joinSteps[] = $currentSteps;
421
                    }
422
                }
423
            }
424
425
            $jn = new JoinNodes($joinSteps);
426
            $transientVars['jn'] = $jn;