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

application/backend/controllers/DynamicContentController.php 1 location

@@ 47-59 (lines=13) @@
44
    /**
45
     * @inheritdoc
46
     */
47
    public function actions()
48
    {
49
        return [
50
            'remove-all' => [
51
                'class' => MultipleDelete::className(),
52
                'modelName' => DynamicContent::className(),
53
            ],
54
            'delete' => [
55
                'class' => DeleteOne::className(),
56
                'modelName' => DynamicContent::className(),
57
            ],
58
        ];
59
    }
60
61
    public function actionIndex()
62
    {

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

@@ 35-47 (lines=13) @@
32
    /**
33
     * @inheritdoc
34
     */
35
    public function actions()
36
    {
37
        return [
38
            'remove-all' => [
39
                'class' => MultipleDelete::className(),
40
                'modelName' => CurrencyRateProvider::className(),
41
            ],
42
            'delete' => [
43
                'class' => DeleteOne::className(),
44
                'modelName' => CurrencyRateProvider::className(),
45
            ],
46
        ];
47
    }
48
49
    public function actionIndex()
50
    {