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

Test Setup Failed
Pull Request — master (#4294)
by Martin Selim
10:32
created
src/resources/lang/en/crud.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -60,7 +60,7 @@
 block discarded – undo
60 60
     'delete_confirmation_not_deleted_title'       => 'Not deleted',
61 61
     'delete_confirmation_not_deleted_message'     => 'Nothing happened. Your item is safe.',
62 62
 
63
-     'force_delete_confirm'                             => 'Are you sure you want to force to delete this item permanently?',
63
+        'force_delete_confirm'                             => 'Are you sure you want to force to delete this item permanently?',
64 64
     'force_delete_confirmation_title'                   => 'Item Permanently Deleted',
65 65
     'force_delete_confirmation_message'                 => 'The item has been permanently deleted successfully.',
66 66
     'force_delete_confirmation_not_title'               => 'NOT deleted',
Please login to merge, or discard this patch.
src/app/Http/Controllers/Operations/ForceDeleteRestoreOperation.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -36,11 +36,11 @@
 block discarded – undo
36 36
         $this->crud->allowAccess('forceDelete');
37 37
         $this->crud->allowAccess('restore');
38 38
 
39
-        $this->crud->operation('forceDelete', function () {
39
+        $this->crud->operation('forceDelete', function() {
40 40
             $this->crud->loadDefaultOperationSettingsFromConfig();
41 41
         });
42 42
 
43
-        $this->crud->operation('list', function () {
43
+        $this->crud->operation('list', function() {
44 44
             $this->crud->addButton('line', 'restore', 'view', 'crud::buttons.restore', 'end');
45 45
             $this->crud->addButton('line', 'force-delete', 'view', 'crud::buttons.force-delete', 'end');
46 46
 
Please login to merge, or discard this patch.