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

Completed
Push — master ( 8c9cfb...1a8e53 )
by Cristian
10:22
created
src/app/Http/Controllers/SettingCrudController.php 1 patch
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -14,18 +14,18 @@
 block discarded – undo
14 14
 	public function __construct() {
15 15
 		parent::__construct();
16 16
 
17
-        $this->crud->setModel("Backpack\Settings\app\Models\Setting");
18
-        $this->crud->setEntityNameStrings('setting', 'settings');
19
-        $this->crud->setRoute('admin/setting');
20
-        $this->crud->denyAccess(['create', 'delete']);
21
-        $this->crud->setColumns(['name', 'value', 'description']);
22
-        $this->crud->addField([
17
+		$this->crud->setModel("Backpack\Settings\app\Models\Setting");
18
+		$this->crud->setEntityNameStrings('setting', 'settings');
19
+		$this->crud->setRoute('admin/setting');
20
+		$this->crud->denyAccess(['create', 'delete']);
21
+		$this->crud->setColumns(['name', 'value', 'description']);
22
+		$this->crud->addField([
23 23
 								'name' => 'name',
24 24
 								'label' => 'Name',
25 25
 								'type' => 'text',
26 26
 								'disabled' => 'disabled'
27 27
 							]);
28
-        $this->crud->addField([
28
+		$this->crud->addField([
29 29
 								'name' => 'value',
30 30
 								'label' => 'Value',
31 31
 								'type' => 'text'
Please login to merge, or discard this patch.