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

src/Decoders/Context.php 2 locations

@@ 101-108 (lines=8) @@
98
     * @param $id
99
     * @return array|null
100
     */
101
    public function getLinkedData($type, $id)
102
    {
103
        if (!isset($this->linked[$type][$id])) {
104
            return null;
105
        }
106
107
        return $this->linked[$type][$id]['data'];
108
    }
109
110
    public function getLinkedDataIndex($type, $id)
111
    {
@@ 110-117 (lines=8) @@
107
        return $this->linked[$type][$id]['data'];
108
    }
109
110
    public function getLinkedDataIndex($type, $id)
111
    {
112
        if (!isset($this->linked[$type][$id])) {
113
            return null;
114
        }
115
116
        return $this->linked[$type][$id]['idx'];
117
    }
118
}
119