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

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