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/I18n/Translator/Backend/Database.php 1 location

@@ 80-87 (lines=8) @@
77
     * @param string|bool $language
78
     * @return string
79
     */
80
    protected function doTranslation($slug, $language = false)
81
    {
82
        if (isset($this->dictionary[$language][$slug])) {
83
            return $this->dictionary[$language][$slug];
84
        }
85
86
        return false;
87
    }
88
}
89

src/I18n/Translator/Backend/File.php 1 location

@@ 146-153 (lines=8) @@
143
     * @param string|bool $language
144
     * @return string|bool
145
     */
146
    protected function doTranslation($slug, $language = false)
147
    {
148
        if (isset($this->dictionary[$language][$slug])) {
149
            return $this->dictionary[$language][$slug];
150
        }
151
152
        return false;
153
    }
154
}
155