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 Failed
Push — add-more-tests ( 65b942...0fe9f9 )
by
unknown
13:54
created
tests/Unit/CrudPanel/CrudPanelCreateTest.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -605,7 +605,7 @@  discard block
 block discarded – undo
605 605
 
606 606
     public function testCreateBelongsToFake()
607 607
     {
608
-        $belongsToField = [   // select_grouped
608
+        $belongsToField = [// select_grouped
609 609
             'label'                      => 'Select_grouped',
610 610
             'type'                       => 'select_grouped', //https://github.com/Laravel-Backpack/CRUD/issues/502
611 611
             'name'                       => 'bang_relation_field',
@@ -741,7 +741,7 @@  discard block
 block discarded – undo
741 741
                 'nickname'        => 'i_have_has_one',
742 742
                 'profile_picture' => 'ohh my picture 1.jpg',
743 743
                 'article'         => 1,
744
-                'addresses'       => [ // HasOne is tested in other test function
744
+                'addresses'       => [// HasOne is tested in other test function
745 745
                     [
746 746
                         'city'   => 2,
747 747
                         'street' => 'test',
Please login to merge, or discard this patch.
tests/Unit/CrudPanel/CrudPanelValidationTest.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -102,7 +102,7 @@
 block discarded – undo
102 102
         $this->crudPanel->addField([
103 103
             'name' => 'password',
104 104
         ]);
105
-       //dd($request);
105
+        //dd($request);
106 106
         $this->crudPanel->setRequest($request);
107 107
 
108 108
         $validatedRequest = $this->crudPanel->validateRequest();
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -86,7 +86,7 @@
 block discarded – undo
86 86
             'password' => 'test'
87 87
         ]);
88 88
 
89
-        $request->setRouteResolver(function () use ($request) {
89
+        $request->setRouteResolver(function() use ($request) {
90 90
             return (new Route('POST', 'users', ['UserCrudController', 'create']))->bind($request);
91 91
         });
92 92
 
Please login to merge, or discard this patch.