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
Branch master (5d2b26)
by Cristian
04:26
created
src/app/Http/Controllers/BackupController.php 1 patch
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -67,8 +67,7 @@  discard block
 block discarded – undo
67 67
 
68 68
 		if ($disk->exists($file_name)) {
69 69
 			return response()->download(storage_path('backups/'.$file_name));
70
-		}
71
-		else
70
+		} else
72 71
 		{
73 72
 			abort(404, "The backup file doesn't exist.");
74 73
 		}
@@ -85,8 +84,7 @@  discard block
 block discarded – undo
85 84
 			$disk->delete($file_name);
86 85
 
87 86
 			return 'success';
88
-		}
89
-		else
87
+		} else
90 88
 		{
91 89
 			abort(404, "The backup file doesn't exist.");
92 90
 		}
Please login to merge, or discard this patch.