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 3 locations

application/modules/seo/models/Redirect.php 1 location

@@ 51-58 (lines=8) @@
48
    /**
49
     * @inheritdoc
50
     */
51
    public function rules()
52
    {
53
        return [
54
            [['type', 'from', 'to'], 'string'],
55
            [['from', 'to'], 'required'],
56
            [['active'], 'boolean']
57
        ];
58
    }
59
60
    /**
61
     * @inheritdoc

application/modules/seo/models/Sitemap.php 1 location

@@ 26-33 (lines=8) @@
23
    /**
24
     * @inheritdoc
25
     */
26
    public function rules()
27
    {
28
        return [
29
            [['uid', 'url'], 'required'],
30
            [['url'], 'string'],
31
            [['uid'], 'string', 'max' => 255]
32
        ];
33
    }
34
35
    /**
36
     * @inheritdoc

application/modules/seo/models/Counter.php 1 location

@@ 33-40 (lines=8) @@
30
    /**
31
     * @inheritdoc
32
     */
33
    public function rules()
34
    {
35
        return [
36
            [['description', 'code'], 'string'],
37
            [['code'], 'required'],
38
            [['name'], 'string', 'max' => 255]
39
        ];
40
    }
41
42
    public function behaviors()
43
    {