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

application/backend/controllers/ErrorMonitorController.php 1 location

@@ 42-54 (lines=13) @@
39
        );
40
    }
41
42
    public function actionSearch()
43
    {
44
        $searchModel = new ErrorMonitor();
45
        $dataProvider = $searchModel->search($_GET);
46
47
        return $this->render(
48
            'search',
49
            [
50
                'searchModel' => $searchModel,
51
                'dataProvider' => $dataProvider,
52
            ]
53
        );
54
    }
55
56
    public function actionDetails($id)
57
    {

application/modules/seo/controllers/ManageController.php 1 location

@@ 86-97 (lines=12) @@
83
     * Show list of Meta tag models
84
     * @return string
85
     */
86
    public function actionMeta()
87
    {
88
        $searchModel = new Meta();
89
        $dataProvider = $searchModel->search($_GET);
90
        return $this->render(
91
            'meta',
92
            [
93
                'dataProvider' => $dataProvider,
94
                'searchModel' => $searchModel,
95
            ]
96
        );
97
    }
98
99
    /**
100
     * Updates an existing Meta model.