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

application/backend/controllers/DynamicContentController.php 1 location

@@ 61-73 (lines=13) @@
58
        ];
59
    }
60
61
    public function actionIndex()
62
    {
63
        $searchModel = new DynamicContent();
64
        $dataProvider = $searchModel->search($_GET);
65
66
        return $this->render(
67
            'index',
68
            [
69
                'dataProvider' => $dataProvider,
70
                'searchModel' => $searchModel,
71
            ]
72
        );
73
    }
74
75
    public function actionEdit($id = null)
76
    {

application/backend/controllers/ErrorMonitorController.php 1 location

@@ 29-40 (lines=12) @@
26
        ];
27
    }
28
29
    public function actionIndex()
30
    {
31
        $searchModel = new ErrorUrl();
32
        $dataProvider = $searchModel->search($_GET);
33
        return $this->render(
34
            'index',
35
            [
36
                'dataProvider' => $dataProvider,
37
                'searchModel' => $searchModel
38
            ]
39
        );
40
    }
41
42
    public function actionSearch()
43
    {

application/backend/controllers/FormController.php 1 location

@@ 37-49 (lines=13) @@
34
        ];
35
    }
36
37
    public function actionIndex()
38
    {
39
        $searchModel = new Form();
40
        $dataProvider = $searchModel->search($_GET);
41
42
        return $this->render(
43
            'index',
44
            [
45
                'dataProvider' => $dataProvider,
46
                'searchModel' => $searchModel,
47
            ]
48
        );
49
    }
50
51
    public function actionEdit($id = null)
52
    {

application/backend/controllers/RouteController.php 1 location

@@ 33-45 (lines=13) @@
30
        ];
31
    }
32
33
    public function actionIndex()
34
    {
35
        $searchModel = new Route();
36
        $dataProvider = $searchModel->search($_GET);
37
38
        return $this->render(
39
            'index',
40
            [
41
                'dataProvider' => $dataProvider,
42
                'searchModel' => $searchModel,
43
            ]
44
        );
45
    }
46
47
    public function actionEdit($id = null)
48
    {

application/modules/core/backend/ExtensionsController.php 1 location

@@ 54-66 (lines=13) @@
51
        ];
52
    }
53
54
    public function actionIndex()
55
    {
56
        $searchModel = new Extensions();
57
        $dataProvider = $searchModel->search($_GET);
58
59
        return $this->render(
60
            'index',
61
            [
62
                'dataProvider' => $dataProvider,
63
                'searchModel' => $searchModel,
64
            ]
65
        );
66
    }
67
68
    public function actionExplore($q='', $p=1)
69
    {

application/modules/shop/controllers/BackendCurrenciesController.php 1 location

@@ 63-75 (lines=13) @@
60
        ];
61
    }
62
63
    public function actionIndex()
64
    {
65
        $searchModel = new Currency();
66
        $dataProvider = $searchModel->search($_GET);
67
68
        return $this->render(
69
            'index',
70
            [
71
                'dataProvider' => $dataProvider,
72
                'searchModel' => $searchModel,
73
            ]
74
        );
75
    }
76
77
    public function actionEdit($id = null)
78
    {

application/modules/shop/controllers/BackendCurrencyRateProviderController.php 1 location

@@ 49-60 (lines=12) @@
46
        ];
47
    }
48
49
    public function actionIndex()
50
    {
51
        $searchModel = new CurrencyRateProvider();
52
        $dataProvider = $searchModel->search($_GET);
53
        return $this->render(
54
            'index',
55
            [
56
                'dataProvider' => $dataProvider,
57
                'searchModel' => $searchModel,
58
            ]
59
        );
60
    }
61
62
    public function actionEdit($id = null)
63
    {

application/modules/shop/controllers/BackendPrefilteredPagesController.php 1 location

@@ 35-47 (lines=13) @@
32
        ];
33
    }
34
35
    public function actionIndex()
36
    {
37
        $searchModel = new PrefilteredPages();
38
        $dataProvider = $searchModel->search($_GET);
39
40
        return $this->render(
41
            'index',
42
            [
43
                'dataProvider' => $dataProvider,
44
                'searchModel' => $searchModel,
45
            ]
46
        );
47
    }
48
49
    public function actionEdit($id = null)
50
    {

application/backend/controllers/PropertiesController.php 1 location

@@ 104-116 (lines=13) @@
101
        ];
102
    }
103
104
    public function actionIndex()
105
    {
106
        $searchModel = new PropertyGroup();
107
        $dataProvider = $searchModel->search($_GET);
108
109
        return $this->render(
110
            'index',
111
            [
112
                'dataProvider' => $dataProvider,
113
                'searchModel' => $searchModel,
114
            ]
115
        );
116
    }
117
118
    public function actionGroup($id = null)
119
    {