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

application/models/Slide.php 1 location

@@ 66-79 (lines=14) @@
63
    /**
64
     * @inheritdoc
65
     */
66
    public function attributeLabels()
67
    {
68
        return [
69
            'id' => Yii::t('app', 'ID'),
70
            'slider_id' => Yii::t('app', 'Slider ID'),
71
            'sort_order' => Yii::t('app', 'Sort Order'),
72
            'image' => Yii::t('app', 'Image'),
73
            'link' => Yii::t('app', 'Link'),
74
            'custom_view_file' => Yii::t('app', 'Custom View File'),
75
            'css_class' => Yii::t('app', 'Css Class'),
76
            'active' => Yii::t('app', 'Active'),
77
            'text' => Yii::t('app', 'Text'),
78
        ];
79
    }
80
81
    /**
82
     * Search slides

application/widgets/navigation/models/Navigation.php 1 location

@@ 70-83 (lines=14) @@
67
    /**
68
     * @inheritdoc
69
     */
70
    public function attributeLabels()
71
    {
72
        return [
73
            'id' => Yii::t('app', 'ID'),
74
            'parent_id' => Yii::t('app', 'Parent ID'),
75
            'name' => Yii::t('app', 'Name'),
76
            'url' => Yii::t('app', 'Url'),
77
            'route' => Yii::t('app', 'Route'),
78
            'route_params' => Yii::t('app', 'Route Params'),
79
            'advanced_css_class' => Yii::t('app', 'Advanced Css Class'),
80
            'sort_order' => Yii::t('app', 'Sort Order'),
81
            'active' => Yii::t('app', 'Active')
82
        ];
83
    }
84
85
    public function behaviors()
86
    {