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 ( 23b4d9...7b9951 )
by Cristian
02:09
created
src/routes/backpack/backupmanager.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@
 block discarded – undo
14 14
     'namespace'  => 'Backpack\BackupManager\app\Http\Controllers',
15 15
     'prefix'     => config('backpack.base.route_prefix', 'admin'),
16 16
     'middleware' => ['web', 'admin'],
17
-], function () {
17
+], function() {
18 18
     Route::get('backup', 'BackupController@index');
19 19
     Route::put('backup/create', 'BackupController@create');
20 20
     Route::get('backup/download/{file_name?}', 'BackupController@download');
Please login to merge, or discard this patch.
src/app/Http/Controllers/BackupController.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -2,7 +2,6 @@  discard block
 block discarded – undo
2 2
 
3 3
 namespace Backpack\BackupManager\app\Http\Controllers;
4 4
 
5
-use Artisan;
6 5
 use Exception;
7 6
 use Illuminate\Routing\Controller;
8 7
 use League\Flysystem\Adapter\Local;
@@ -11,7 +10,6 @@  discard block
 block discarded – undo
11 10
 use Response;
12 11
 use Storage;
13 12
 use Symfony\Component\Process\Process as Process;
14
-use Symfony\Component\Process\Exception\ProcessFailedException;
15 13
 
16 14
 class BackupController extends Controller
17 15
 {
Please login to merge, or discard this patch.