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 = 4-4 lines in 3 locations

src/AbstractWorkflow.php 3 locations

@@ 1097-1100 (lines=4) @@
1094
            $argsOriginal = $function->getArgs();
1095
            $args = [];
1096
1097
            foreach ($argsOriginal as $k => $v) {
1098
                $translateValue = $this->getConfiguration()->getVariableResolver()->translateVariables($v, $transientVars, $ps);
1099
                $args[$k] = $translateValue;
1100
            }
1101
1102
            $provider = $this->getResolver()->getFunction($type, $args);
1103
@@ 1157-1160 (lines=4) @@
1154
1155
                $args = [];
1156
1157
                foreach ($argsOriginal as $k => $v) {
1158
                    $translateValue = $this->getConfiguration()->getVariableResolver()->translateVariables($v, $transientVars, $ps);
1159
                    $args[$k] = $translateValue;
1160
                }
1161
1162
1163
                $validator = $this->getResolver()->getValidator($type, $args);
@@ 2082-2085 (lines=4) @@
2079
2080
2081
        $args = [];
2082
        foreach ($argsOriginal as $key => $value) {
2083
            $translateValue = $this->getConfiguration()->getVariableResolver()->translateVariables($value, $transientVars, $ps);
2084
            $args[$key] = $translateValue;
2085
        }
2086
2087
        if (-1 !== $currentStepId) {
2088
            $stepId = array_key_exists('stepId', $args) ? (integer)$args['stepId'] : null;