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 ( 1b76b0...423952 )
by Cristian
08:09
created
src/app/Http/Controllers/CrudController.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,6 @@
 block discarded – undo
4 4
 
5 5
 use Illuminate\Foundation\Bus\DispatchesJobs;
6 6
 use Illuminate\Foundation\Validation\ValidatesRequests;
7
-use Illuminate\Http\Request;
8 7
 use Illuminate\Routing\Controller;
9 8
 
10 9
 class CrudController extends Controller
Please login to merge, or discard this patch.
tests/Unit/Http/CrudControllerTest.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,8 +2,8 @@
 block discarded – undo
2 2
 
3 3
 namespace Backpack\CRUD\Tests\Unit\Http;
4 4
 
5
-use Backpack\CRUD\app\Library\CrudPanel\CrudPanel;
6 5
 use Backpack\CRUD\Tests\BaseTest;
6
+use Backpack\CRUD\app\Library\CrudPanel\CrudPanel;
7 7
 
8 8
 class CrudControllerTest extends BaseTest
9 9
 {
Please login to merge, or discard this patch.
src/app/Console/Commands/Install.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,10 +2,10 @@
 block discarded – undo
2 2
 
3 3
 namespace Backpack\CRUD\app\Console\Commands;
4 4
 
5
+use Artisan;
5 6
 use Illuminate\Console\Command;
6 7
 use Symfony\Component\Process\Exception\ProcessFailedException;
7 8
 use Symfony\Component\Process\Process;
8
-use Artisan;
9 9
 
10 10
 class Install extends Command
11 11
 {
Please login to merge, or discard this patch.