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

application/models/ObjectPropertyGroup.php 1 location

@@ 41-49 (lines=9) @@
38
    /**
39
     * @inheritdoc
40
     */
41
    public function attributeLabels()
42
    {
43
        return [
44
            'id' => Yii::t('app', 'ID'),
45
            'object_id' => Yii::t('app', 'Object ID'),
46
            'object_model_id' => Yii::t('app', 'Object Model ID'),
47
            'property_group_id' => Yii::t('app', 'Property Group ID'),
48
        ];
49
    }
50
51
    public static function getForModel($model)
52
    {

application/models/ObjectStaticValues.php 1 location

@@ 40-48 (lines=9) @@
37
    /**
38
     * @inheritdoc
39
     */
40
    public function attributeLabels()
41
    {
42
        return [
43
            'id' => Yii::t('app', 'ID'),
44
            'object_id' => Yii::t('app', 'Object ID'),
45
            'object_model_id' => Yii::t('app', 'Object Model ID'),
46
            'property_static_value_id' => Yii::t('app', 'Property Static Value ID'),
47
        ];
48
    }
49
}
50