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/modules/image/models/Image.php 1 location

@@ 44-55 (lines=12) @@
41
        ];
42
    }
43
44
    public function attributeLabels()
45
    {
46
        return [
47
            'id' => Yii::t('app', 'ID'),
48
            'object_id' => Yii::t('app', 'Object ID'),
49
            'object_model_id' => Yii::t('app', 'Object Model ID'),
50
            'image_title' => Yii::t('app', 'Image Title'),
51
            'image_alt' => Yii::t('app', 'Image Alt'),
52
            'sort_order' => Yii::t('app', 'Sort Order'),
53
            'filename' => Yii::t('app', 'Filename')
54
        ];
55
    }
56
57
    public function behaviors()
58
    {

application/modules/shop/models/SpecialPriceList.php 1 location

@@ 53-64 (lines=12) @@
50
    /**
51
     * @inheritdoc
52
     */
53
    public function attributeLabels()
54
    {
55
        return [
56
            'id' => Yii::t('app', 'ID'),
57
            'object_id' => Yii::t('app', 'Object ID'),
58
            'class' => Yii::t('app', 'Class'),
59
            'active' => Yii::t('app', 'Active'),
60
            'type_id' => Yii::t('app', 'Type'),
61
            'sort_order' => Yii::t('app', 'Sort Order'),
62
            'params' => Yii::t('app', 'Params'),
63
        ];
64
    }
65
66
    /**
67
     * @inheritdoc