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 ( 7bfbc2...40564a )
by Cristian
02:22
created
src/app/Http/Controllers/BackupController.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -40,13 +40,13 @@
 block discarded – undo
40 40
     {
41 41
         try {
42 42
             // start the backup process
43
-          Artisan::call('backup:run');
43
+            Artisan::call('backup:run');
44 44
             $output = Artisan::output();
45 45
 
46
-          // log the results
47
-          Log::info("Backpack\BackupManager -- new backup started from admin interface \r\n".$output);
48
-          // return the results as a response to the ajax call
49
-          echo $output;
46
+            // log the results
47
+            Log::info("Backpack\BackupManager -- new backup started from admin interface \r\n".$output);
48
+            // return the results as a response to the ajax call
49
+            echo $output;
50 50
         } catch (Exception $e) {
51 51
             Response::make($e->getMessage(), 500);
52 52
         }
Please login to merge, or discard this patch.
src/app/Http/routes.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -6,5 +6,5 @@
 block discarded – undo
6 6
     Route::get('backup', 'BackupController@index');
7 7
     Route::put('backup/create', 'BackupController@create');
8 8
     Route::get('backup/download/{folder_name}/{file_name?}', 'BackupController@download');
9
-	Route::delete('backup/delete/{folder_name}/{file_name?}', 'BackupController@delete');
9
+    Route::delete('backup/delete/{folder_name}/{file_name?}', 'BackupController@delete');
10 10
 });
Please login to merge, or discard this patch.