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 ( 798e5e...a80ee2 )
by Cristian
05:59
created
src/app/Http/Controllers/BackupController.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -49,14 +49,14 @@
 block discarded – undo
49 49
     {
50 50
         try {
51 51
             ini_set('max_execution_time', 300);
52
-          // start the backup process
53
-          Artisan::call('backup:run');
52
+            // start the backup process
53
+            Artisan::call('backup:run');
54 54
             $output = Artisan::output();
55 55
 
56
-          // log the results
57
-          Log::info("Backpack\BackupManager -- new backup started from admin interface \r\n".$output);
58
-          // return the results as a response to the ajax call
59
-          echo $output;
56
+            // log the results
57
+            Log::info("Backpack\BackupManager -- new backup started from admin interface \r\n".$output);
58
+            // return the results as a response to the ajax call
59
+            echo $output;
60 60
         } catch (Exception $e) {
61 61
             Response::make($e->getMessage(), 500);
62 62
         }
Please login to merge, or discard this patch.
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.