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

@@ 7-15 (lines=9) @@
4
5
trait UniquePages
6
{
7
    private function about_us()
8
    {
9
        $this->crud->addField([
10
            'name' => 'content',
11
            'label' => trans('backpack::pagemanager.content'),
12
            'type' => 'wysiwyg',
13
            'placeholder' => trans('backpack::pagemanager.content_placeholder'),
14
        ]);
15
    }
16
17
    private function some_thing()
18
    {
@@ 17-25 (lines=9) @@
14
        ]);
15
    }
16
17
    private function some_thing()
18
    {
19
        $this->crud->addField([
20
            'name' => 'content',
21
            'label' => trans('backpack::pagemanager.content'),
22
            'type' => 'simplemde',
23
            'placeholder' => trans('backpack::pagemanager.content_placeholder'),
24
        ]);
25
    }
26
}
27