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 ( 5d2b26...5da4be )
by Cristian
02:17
created
src/app/Http/Controllers/BackupController.php 1 patch
Unused Use Statements   -5 removed lines patch added patch discarded remove patch
@@ -1,12 +1,7 @@
 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 4
 use Storage;
9
-use Carbon\Carbon;
10 5
 use Artisan;
11 6
 use Log;
12 7
 
Please login to merge, or discard this patch.
src/BackupManagerServiceProvider.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -30,9 +30,9 @@  discard block
 block discarded – undo
30 30
         $this->loadViewsFrom(realpath(__DIR__.'/resources/views'), 'backupmanager');
31 31
 
32 32
         // publish config file
33
-        $this->publishes([ __DIR__.'/config/laravel-backup.php' => config_path('laravel-backup.php'), ], 'config');
33
+        $this->publishes([__DIR__.'/config/laravel-backup.php' => config_path('laravel-backup.php'), ], 'config');
34 34
         // publish lang files
35
-        $this->publishes([ __DIR__.'/resources/lang' => resource_path('lang/vendor/backpack'), ], 'lang');
35
+        $this->publishes([__DIR__.'/resources/lang' => resource_path('lang/vendor/backpack'), ], 'lang');
36 36
     }
37 37
 
38 38
     /**
@@ -67,7 +67,7 @@  discard block
 block discarded – undo
67 67
 
68 68
     private function registerBackupManager()
69 69
     {
70
-        $this->app->bind('backupmanager',function($app){
70
+        $this->app->bind('backupmanager', function($app) {
71 71
             return new BackupManager($app);
72 72
         });
73 73
     }
Please login to merge, or discard this patch.