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
Branch master (f5b2f7)
by Cristian
04:05
created
src/app/Http/Controllers/CrudController.php 1 patch
Unused Use Statements   -3 removed lines patch added patch discarded remove patch
@@ -4,12 +4,9 @@
 block discarded – undo
4 4
 use Illuminate\Routing\Controller as BaseController;
5 5
 use Illuminate\Foundation\Validation\ValidatesRequests;
6 6
 use Illuminate\Http\Request;
7
-use Crypt;
8
-use Illuminate\Support\Facades\Form as Form;
9 7
 use Alert;
10 8
 
11 9
 // VALIDATION: change the requests to match your own file names if you need form validation
12
-use Backpack\CRUD\app\Http\Requests\CrudRequest as StoreRequest;
13 10
 use Backpack\CRUD\app\Http\Requests\CrudRequest as UpdateRequest;
14 11
 
15 12
 class CrudController extends BaseController {
Please login to merge, or discard this patch.
src/CrudServiceProvider.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,6 @@
 block discarded – undo
2 2
 namespace Backpack\CRUD;
3 3
 
4 4
 use Illuminate\Support\ServiceProvider;
5
-use Illuminate\Routing\Router;
6 5
 use Route;
7 6
 
8 7
 class CrudServiceProvider extends ServiceProvider
Please login to merge, or discard this patch.
src/CrudTrait.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,5 @@
 block discarded – undo
1 1
 <?php namespace Backpack\CRUD;
2 2
 
3
-use Illuminate\Database\Eloquent\Model;
4 3
 use DB;
5 4
 use Lang;
6 5
 
Please login to merge, or discard this patch.