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 ( f24ad2...91ea33 )
by Cristian
07:08
created
src/app/Http/Controllers/BackupController.php 2 patches
Unused Use Statements   +2 added lines, -6 removed lines patch added patch discarded remove patch
@@ -1,14 +1,10 @@
 block discarded – undo
1 1
 <?php namespace Backpack\BackupManager\app\Http\Controllers;
2 2
 
3
-use App\Http\Requests;
4 3
 use App\Http\Controllers\Controller;
5
-use Illuminate\Http\Request;
6
-use Auth;
7
-use App;
8
-use Storage;
9
-use Carbon\Carbon;
10 4
 use Artisan;
5
+use Illuminate\Http\Request;
11 6
 use Log;
7
+use Storage;
12 8
 
13 9
 class BackupController extends Controller {
14 10
 
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@
 block discarded – undo
35 35
 						'file_size' => $disk->size($f),
36 36
 						'last_modified' => $disk->lastModified($f),
37 37
 						'disk' => $disk_name,
38
-						'download' => ($adapter instanceof \League\Flysystem\Adapter\Local)?true:false
38
+						'download' => ($adapter instanceof \League\Flysystem\Adapter\Local) ? true : false
39 39
 						];
40 40
 				}
41 41
 			}
Please login to merge, or discard this patch.