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

application/backend/models/ErrorMonitor.php 1 location

@@ 41-52 (lines=12) @@
38
        ];
39
    }
40
41
    public function attributeLabels()
42
    {
43
        return [
44
            'url' => Yii::t('app', 'URL'),
45
            'http_code' => Yii::t('app', 'HTTP code'),
46
            'info' => Yii::t('app', 'Info'),
47
            'event_date' => Yii::t('app', 'Event date'),
48
            'server_vars' => Yii::t('app', 'Server variables'),
49
            'request_vars' => Yii::t('app', 'Request variables'),
50
            'timestamp' => Yii::t('app', 'Timestamp')
51
        ];
52
    }
53
54
55
    /**

application/models/ErrorLog.php 1 location

@@ 60-71 (lines=12) @@
57
        ];
58
    }
59
60
    public function attributeLabels()
61
    {
62
        return [
63
            'id' => Yii::t('app', 'ID'),
64
            'url_id' => Yii::t('app', 'URL ID'),
65
            'http_code' => Yii::t('app', 'HTTP response code'),
66
            'info' => Yii::t('app', 'Information'),
67
            'timestamp' => Yii::t('app', 'Timestamp'),
68
            'server_vars' => Yii::t('app', 'Server variables'),
69
            'request_vars' => Yii::t('app', 'Request variables'),
70
        ];
71
    }
72
73
    public function getErrorUrl()
74
    {