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

@@ 1077-1080 (lines=4) @@
1074
            $argsOriginal = $function->getArgs();
1075
            $args = [];
1076
1077
            foreach ($argsOriginal as $k => $v) {
1078
                $translateValue = $this->getConfiguration()->getVariableResolver()->translateVariables($v, $transientVars, $ps);
1079
                $args[$k] = $translateValue;
1080
            }
1081
1082
            $provider = $this->getResolver()->getFunction($type, $args);
1083
@@ 1135-1138 (lines=4) @@
1132
1133
                $args = [];
1134
1135
                foreach ($argsOriginal as $k => $v) {
1136
                    $translateValue = $this->getConfiguration()->getVariableResolver()->translateVariables($v, $transientVars, $ps);
1137
                    $args[$k] = $translateValue;
1138
                }
1139
1140
1141
                $validator = $this->getResolver()->getValidator($type, $args);
@@ 2039-2042 (lines=4) @@
2036
2037
2038
        $args = [];
2039
        foreach ($argsOriginal as $key => $value) {
2040
            $translateValue = $this->getConfiguration()->getVariableResolver()->translateVariables($value, $transientVars, $ps);
2041
            $args[$key] = $translateValue;
2042
        }
2043
2044
        if (-1 !== $currentStepId) {
2045
            $stepId = array_key_exists('stepId', $args) ? (integer)$args['stepId'] : null;