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 2 locations

src/Dispatcher/RunWorkflowParam.php 2 locations

@@ 203-206 (lines=4) @@
200
            throw new Exception\InvalidArgumentException($errMsg);
201
        }
202
203
        if (static::WORKFLOW_RUN_INITIALIZE === $workflowActivity && null === $this->getWorkflowName()) {
204
            $errMsg = 'Not specified name workflow';
205
            throw new Exception\InvalidArgumentException($errMsg);
206
        }
207
208
        if (static::WORKFLOW_RUN_TYPE_DO_ACTION === $workflowActivity && null === $this->getEntryId()) {
209
            $errMsg = 'Not specified entryId';
@@ 208-211 (lines=4) @@
205
            throw new Exception\InvalidArgumentException($errMsg);
206
        }
207
208
        if (static::WORKFLOW_RUN_TYPE_DO_ACTION === $workflowActivity && null === $this->getEntryId()) {
209
            $errMsg = 'Not specified entryId';
210
            throw new Exception\InvalidArgumentException($errMsg);
211
        }
212
    }
213
}
214