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

src/Engine/Transition.php 2 locations

@@ 233-238 (lines=6) @@
230
                        $previousIds[$i] = $currentJoinStep->getId();
231
                    }
232
233
                    if (!$action->isFinish()) {
234
                        $previousIds[0] = $step->getId();
235
                        $theResult = $joinDesc->getResult();
236
237
                        $this->createNewCurrentStep($theResult, $entry, $store, $action->getId(), null, $previousIds, $transientVars, $ps);
238
                    }
239
240
                    foreach ($joinResult->getPostFunctions() as $function) {
241
                        $functionsEngine->executeFunction($function, $transientVars, $ps);
@@ 244-254 (lines=11) @@
241
                        $functionsEngine->executeFunction($function, $transientVars, $ps);
242
                    }
243
                }
244
            } else {
245
                $previousIds = [];
246
247
                if (null !== $step) {
248
                    $previousIds[] = $step->getId();
249
                }
250
251
                if (!$action->isFinish()) {
252
                    $this->createNewCurrentStep($theResult, $entry, $store, $action->getId(), $step, $previousIds, $transientVars, $ps);
253
                }
254
            }
255
256
            if ($extraPostFunctions && $extraPostFunctions->count() > 0) {
257
                foreach ($extraPostFunctions as $function) {