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

Passed
Pull Request — master (#3017)
by Roberto
48:35 queued 36:45
created
src/app/Models/Traits/HasRelationshipFields.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -84,7 +84,7 @@
 block discarded – undo
84 84
             // check for NOT NULL
85 85
             $notNull = $column->getNotnull();
86 86
             // return the value of nullable (aka the inverse of NOT NULL)
87
-            return ! $notNull;
87
+            return !$notNull;
88 88
         } catch (\Exception $e) {
89 89
             return true;
90 90
         }
Please login to merge, or discard this patch.
src/app/Models/Traits/HasUploadFields.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -75,7 +75,7 @@  discard block
 block discarded – undo
75 75
      */
76 76
     public function uploadMultipleFilesToDisk($value, $attribute_name, $disk, $destination_path)
77 77
     {
78
-        if (! is_array($this->{$attribute_name})) {
78
+        if (!is_array($this->{$attribute_name})) {
79 79
             $attribute_value = json_decode($this->{$attribute_name}, true) ?? [];
80 80
         } else {
81 81
             $attribute_value = $this->{$attribute_name};
@@ -87,7 +87,7 @@  discard block
 block discarded – undo
87 87
         if ($files_to_clear) {
88 88
             foreach ($files_to_clear as $key => $filename) {
89 89
                 \Storage::disk($disk)->delete($filename);
90
-                $attribute_value = Arr::where($attribute_value, function ($value, $key) use ($filename) {
90
+                $attribute_value = Arr::where($attribute_value, function($value, $key) use ($filename) {
91 91
                     return $value != $filename;
92 92
                 });
93 93
             }
Please login to merge, or discard this patch.
src/app/Http/Controllers/CrudController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
         //
33 33
         // It's done inside a middleware closure in order to have
34 34
         // the complete request inside the CrudPanel object.
35
-        $this->middleware(function ($request, $next) {
35
+        $this->middleware(function($request, $next) {
36 36
             $this->crud = app()->make('crud');
37 37
             $this->crud->setRequest($request);
38 38
 
Please login to merge, or discard this patch.
src/app/Library/CrudPanel/Traits/Settings.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@
 block discarded – undo
57 57
      */
58 58
     public function settings()
59 59
     {
60
-        return Arr::sort($this->settings, function ($value, $key) {
60
+        return Arr::sort($this->settings, function($value, $key) {
61 61
             return $key;
62 62
         });
63 63
     }
Please login to merge, or discard this patch.
tests/Unit/Http/CrudControllerTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@
 block discarded – undo
21 21
         $app['router']->get('users/{id}/edit', "$controller@edit");
22 22
         $app['router']->put('users/{id}', "$controller@update");
23 23
 
24
-        $app->singleton('crud', function ($app) {
24
+        $app->singleton('crud', function($app) {
25 25
             return new CrudPanel($app);
26 26
         });
27 27
     }
Please login to merge, or discard this patch.
src/app/Console/Commands/Traits/PrettyCommandOutput.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@  discard block
 block discarded – undo
26 26
         $command = is_string($command) ? explode(' ', $command) : $command;
27 27
 
28 28
         $process = new Process($command, null, null, null, $this->option('timeout'));
29
-        $process->run(function ($type, $buffer) {
29
+        $process->run(function($type, $buffer) {
30 30
             if (Process::ERR === $type) {
31 31
                 $this->echo('comment', $buffer);
32 32
             } else {
@@ -35,7 +35,7 @@  discard block
 block discarded – undo
35 35
         });
36 36
 
37 37
         // executes after the command finishes
38
-        if (! $process->isSuccessful()) {
38
+        if (!$process->isSuccessful()) {
39 39
             throw new ProcessFailedException($process);
40 40
         }
41 41
 
Please login to merge, or discard this patch.
src/BackpackServiceProvider.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -57,18 +57,18 @@  discard block
 block discarded – undo
57 57
     public function register()
58 58
     {
59 59
         // Bind the CrudPanel object to Laravel's service container
60
-        $this->app->singleton('crud', function ($app) {
60
+        $this->app->singleton('crud', function($app) {
61 61
             return new CrudPanel($app);
62 62
         });
63 63
 
64 64
         // Bind the widgets collection object to Laravel's service container
65
-        $this->app->singleton('widgets', function ($app) {
65
+        $this->app->singleton('widgets', function($app) {
66 66
             return new Collection();
67 67
         });
68 68
 
69 69
         // load a macro for Route,
70 70
         // helps developers load all routes for a CRUD resource in one line
71
-        if (! Route::hasMacro('crud')) {
71
+        if (!Route::hasMacro('crud')) {
72 72
             $this->addRouteMacro();
73 73
         }
74 74
 
@@ -84,7 +84,7 @@  discard block
 block discarded – undo
84 84
         $middleware_key = config('backpack.base.middleware_key');
85 85
         $middleware_class = config('backpack.base.middleware_class');
86 86
 
87
-        if (! is_array($middleware_class)) {
87
+        if (!is_array($middleware_class)) {
88 88
             $router->pushMiddlewareToGroup($middleware_key, $middleware_class);
89 89
 
90 90
             return;
@@ -182,7 +182,7 @@  discard block
 block discarded – undo
182 182
      */
183 183
     private function addRouteMacro()
184 184
     {
185
-        Route::macro('crud', function ($name, $controller) {
185
+        Route::macro('crud', function($name, $controller) {
186 186
             // put together the route name prefix,
187 187
             // as passed to the Route::group() statements
188 188
             $routeName = '';
Please login to merge, or discard this patch.
src/app/Library/Widget.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -144,7 +144,7 @@
 block discarded – undo
144 144
     {
145 145
         $itemExists = $this->collection()->contains('name', $this->attributes['name']);
146 146
 
147
-        if (! $itemExists) {
147
+        if (!$itemExists) {
148 148
             $this->collection()->put($this->attributes['name'], $this);
149 149
         } else {
150 150
             $this->collection()[$this->name] = $this;
Please login to merge, or discard this patch.
src/app/Http/Controllers/Operations/ShowOperation.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -30,21 +30,21 @@
 block discarded – undo
30 30
         $this->crud->allowAccess('show');
31 31
         $this->crud->setOperationSetting('setFromDb', true);
32 32
 
33
-        $this->crud->operation('show', function () {
33
+        $this->crud->operation('show', function() {
34 34
             $this->crud->loadDefaultOperationSettingsFromConfig();
35 35
         });
36 36
 
37
-        $this->crud->operation('list', function () {
37
+        $this->crud->operation('list', function() {
38 38
             $this->crud->addButton('line', 'show', 'view', 'crud::buttons.show', 'beginning');
39 39
         });
40 40
 
41
-        $this->crud->operation(['create', 'update'], function () {
41
+        $this->crud->operation(['create', 'update'], function() {
42 42
             $this->crud->addSaveAction([
43 43
                 'name' => 'save_and_preview',
44
-                'visible' => function ($crud) {
44
+                'visible' => function($crud) {
45 45
                     return $crud->hasAccess('show');
46 46
                 },
47
-                'redirect' => function ($crud, $request, $itemId = null) {
47
+                'redirect' => function($crud, $request, $itemId = null) {
48 48
                     $itemId = $itemId ?: $request->input('id');
49 49
                     $redirectUrl = $crud->route.'/'.$itemId.'/show';
50 50
                     if ($request->has('locale')) {
Please login to merge, or discard this patch.