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

@@ 1090-1093 (lines=4) @@
1087
            $argsOriginal = $function->getArgs();
1088
            $args = [];
1089
1090
            foreach ($argsOriginal as $k => $v) {
1091
                $translateValue = $this->getConfiguration()->getVariableResolver()->translateVariables($v, $transientVars, $ps);
1092
                $args[$k] = $translateValue;
1093
            }
1094
1095
            $provider = $this->getResolver()->getFunction($type, $args);
1096
@@ 1149-1152 (lines=4) @@
1146
1147
                $args = [];
1148
1149
                foreach ($argsOriginal as $k => $v) {
1150
                    $translateValue = $this->getConfiguration()->getVariableResolver()->translateVariables($v, $transientVars, $ps);
1151
                    $args[$k] = $translateValue;
1152
                }
1153
1154
1155
                $validator = $this->getResolver()->getValidator($type, $args);
@@ 2055-2058 (lines=4) @@
2052
2053
2054
        $args = [];
2055
        foreach ($argsOriginal as $key => $value) {
2056
            $translateValue = $this->getConfiguration()->getVariableResolver()->translateVariables($value, $transientVars, $ps);
2057
            $args[$key] = $translateValue;
2058
        }
2059
2060
        if (-1 !== $currentStepId) {
2061
            $stepId = array_key_exists('stepId', $args) ? (integer)$args['stepId'] : null;