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

src/Issue/IssueField.php 2 locations

@@ 352-361 (lines=10) @@
349
        return $this;
350
    }
351
352
    public function setIssueTypeName($name)
353
    {
354
        if (is_null($this->issuetype)) {
355
            $this->issuetype = new IssueType();
356
        }
357
358
        $this->issuetype->name = (string) $name;
359
360
        return $this;
361
    }
362
363
    public function setIssueTypeId($id)
364
    {
@@ 363-372 (lines=10) @@
360
        return $this;
361
    }
362
363
    public function setIssueTypeId($id)
364
    {
365
        if (is_null($this->issuetype)) {
366
            $this->issuetype = new IssueType();
367
        }
368
369
        $this->issuetype->id = (string) $id;
370
371
        return $this;
372
    }
373
}
374