Scrutinizer GitHub App not installed

We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.

Install GitHub App

Code Duplication    Length = 9-9 lines in 3 locations

src/app/PageTemplates.php 1 location

@@ 62-70 (lines=9) @@
59
                    ]);
60
    }
61
62
    private function about_us()
63
    {
64
        $this->crud->addField([
65
                        'name' => 'content',
66
                        'label' => trans('backpack::pagemanager.content'),
67
                        'type' => 'wysiwyg',
68
                        'placeholder' => trans('backpack::pagemanager.content_placeholder'),
69
                    ]);
70
    }
71
}
72

src/app/UniquePages.php 2 locations

@@ 22-30 (lines=9) @@
19
    | - page slug (hidden and fix, slug of method name)
20
    */
21
22
    private function about_us()
23
    {
24
        $this->crud->addField([
25
            'name' => 'content',
26
            'label' => trans('backpack::pagemanager.content'),
27
            'type' => 'wysiwyg',
28
            'placeholder' => trans('backpack::pagemanager.content_placeholder'),
29
        ]);
30
    }
31
32
    private function some_thing()
33
    {
@@ 32-40 (lines=9) @@
29
        ]);
30
    }
31
32
    private function some_thing()
33
    {
34
        $this->crud->addField([
35
            'name' => 'content',
36
            'label' => trans('backpack::pagemanager.content'),
37
            'type' => 'simplemde',
38
            'placeholder' => trans('backpack::pagemanager.content_placeholder'),
39
        ]);
40
    }
41
}
42