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 ( 185c71...0918c5 )
by Cristian
02:24
created
src/app/Http/Controllers/SettingCrudController.php 2 patches
Unused Use Statements   -4 removed lines patch added patch discarded remove patch
@@ -1,12 +1,8 @@
 block discarded – undo
1 1
 <?php namespace Backpack\Settings\app\Http\Controllers;
2 2
 
3
-use Illuminate\Http\Request;
4
-use App\Http\Requests;
5
-use App\Http\Controllers\Controller;
6 3
 use Backpack\CRUD\app\Http\Controllers\CrudController;
7 4
 
8 5
 // VALIDATION
9
-use Backpack\Settings\app\Http\Requests\SettingRequest as StoreRequest;
10 6
 use Backpack\Settings\app\Http\Requests\SettingRequest as UpdateRequest;
11 7
 
12 8
 class SettingCrudController extends CrudController {
Please login to merge, or discard this patch.
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -88,8 +88,7 @@  discard block
 block discarded – undo
88 88
 		if (view()->exists('vendor.dick.crud.list'))
89 89
 		{
90 90
 			return view('vendor.dick.crud.list', $this->data);
91
-		}
92
-		else
91
+		} else
93 92
 		{
94 93
 			return view('crud::list', $this->data);
95 94
 		}
@@ -134,8 +133,7 @@  discard block
 block discarded – undo
134 133
 		if (view()->exists('vendor.dick.crud.edit'))
135 134
 		{
136 135
 			return view('vendor.dick.crud.edit', $this->data);
137
-		}
138
-		else
136
+		} else
139 137
 		{
140 138
 			return view('crud::edit', $this->data);
141 139
 		}
Please login to merge, or discard this patch.
src/SettingsServiceProvider.php 1 patch
Unused Use Statements   +3 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,11 +1,10 @@
 block discarded – undo
1 1
 <?php namespace Backpack\Settings;
2 2
 
3
-use Illuminate\Routing\Router;
4
-use Illuminate\Support\ServiceProvider;
5
-use Illuminate\Support\Facades\DB;
6
-use Illuminate\Database\Eloquent\Model as Eloquent;
7 3
 use Backpack\Settings\app\Models\Setting as Setting;
8 4
 use Config;
5
+use Illuminate\Routing\Router;
6
+use Illuminate\Support\Facades\DB;
7
+use Illuminate\Support\ServiceProvider;
9 8
 
10 9
 class SettingsServiceProvider extends ServiceProvider
11 10
 {
Please login to merge, or discard this patch.