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/class/core/Errors.php 2 locations

@@ 95-102 (lines=8) @@
92
     *      Boolean : false if no render to use
93
     *      Array   : Infos from config
94
     */
95
    public static function getErrorRender()
96
    {
97
        $calledClass = get_called_class();
98
        $app         = $calledClass::getApp();
99
        $renderFcts  = $app->getConfig('errorRenderFct');
100
        
101
        return self::defineRenderToUse($renderFcts);
102
    }
103
    
104
    /**
105
     * get the exception render from config for cli or default
@@ 111-118 (lines=8) @@
108
     *      Boolean : false if no render to use
109
     *      Array   : Infos from config
110
     */
111
    public static function getExceptionRender()
112
    {
113
        $calledClass = get_called_class();
114
        $app         = $calledClass::getApp();
115
        $renderFcts  = $app->getConfig('exceptionRenderFct');
116
        
117
        return self::defineRenderToUse($renderFcts);
118
    }
119
    
120
    /**
121
     * Find the render to use with the config