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
Push — eager-load-relationships-on-up... ( a9f064 )
by Pedro
15:31
created
src/app/Library/CrudPanel/Traits/Read.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -71,7 +71,7 @@
 block discarded – undo
71 71
     {
72 72
         if (! $this->entry) {
73 73
             if($this->getOperationSetting('eagerLoadRelationships')) {
74
-            	$this->eagerLoadRelationshipFields();
74
+                $this->eagerLoadRelationshipFields();
75 75
             }
76 76
             $this->entry = $this->getModelWithCrudPanelQuery()->findOrFail($id);
77 77
             $this->entry = $this->entry->withFakes();
Please login to merge, or discard this patch.
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -54,7 +54,7 @@  discard block
 block discarded – undo
54 54
     {
55 55
         $entry = $this->getCurrentEntry();
56 56
 
57
-        if (! $entry) {
57
+        if (!$entry) {
58 58
             return false;
59 59
         }
60 60
 
@@ -69,8 +69,8 @@  discard block
 block discarded – undo
69 69
      */
70 70
     public function getEntry($id)
71 71
     {
72
-        if (! $this->entry) {
73
-            if($this->getOperationSetting('eagerLoadRelationships')) {
72
+        if (!$this->entry) {
73
+            if ($this->getOperationSetting('eagerLoadRelationships')) {
74 74
             	$this->eagerLoadRelationshipFields();
75 75
             }
76 76
             $this->entry = $this->getModelWithCrudPanelQuery()->findOrFail($id);
@@ -80,7 +80,7 @@  discard block
 block discarded – undo
80 80
         return $this->entry;
81 81
     }
82 82
 
83
-    private function shouldUseFallbackLocale(): bool|string
83
+    private function shouldUseFallbackLocale(): bool | string
84 84
     {
85 85
         $fallbackRequestValue = $this->getRequest()->get('_fallback_locale');
86 86
 
@@ -96,7 +96,7 @@  discard block
 block discarded – undo
96 96
      */
97 97
     public function getEntryWithLocale($id)
98 98
     {
99
-        if (! $this->entry) {
99
+        if (!$this->entry) {
100 100
             $this->entry = $this->getEntry($id);
101 101
         }
102 102
 
@@ -147,7 +147,7 @@  discard block
 block discarded – undo
147 147
         foreach ($crudObjects as $crudObjectName => $attributes) {
148 148
             $relationString = isset($attributes['entity']) && $attributes['entity'] !== false ? $attributes['entity'] : '';
149 149
             
150
-            if(!$relationString) {
150
+            if (!$relationString) {
151 151
                 continue;
152 152
             }
153 153
 
@@ -214,7 +214,7 @@  discard block
 block discarded – undo
214 214
      */
215 215
     public function enableDetailsRow()
216 216
     {
217
-        if (! backpack_pro()) {
217
+        if (!backpack_pro()) {
218 218
             throw new BackpackProRequiredException('Details row');
219 219
         }
220 220
 
@@ -313,7 +313,7 @@  discard block
 block discarded – undo
313 313
                 // we will apply the same labels as the values to the menu if developer didn't
314 314
                 $this->abortIfInvalidPageLength($menu[0]);
315 315
 
316
-                if (! isset($menu[1]) || ! is_array($menu[1])) {
316
+                if (!isset($menu[1]) || !is_array($menu[1])) {
317 317
                     $menu[1] = $menu[0];
318 318
                 }
319 319
             } else {
@@ -401,7 +401,7 @@  discard block
 block discarded – undo
401 401
      */
402 402
     public function enableExportButtons()
403 403
     {
404
-        if (! backpack_pro()) {
404
+        if (!backpack_pro()) {
405 405
             throw new BackpackProRequiredException('Export buttons');
406 406
         }
407 407
 
Please login to merge, or discard this patch.
src/app/Library/CrudPanel/Traits/Columns.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -74,7 +74,7 @@  discard block
 block discarded – undo
74 74
     /**
75 75
      * Add a column at the end of the CRUD object's "columns" array and return it.
76 76
      */
77
-    public function addAndReturnColumn(array|string $column): CrudColumn
77
+    public function addAndReturnColumn(array | string $column): CrudColumn
78 78
     {
79 79
         $column = $this->prepareAttributesAndAddColumn($column);
80 80
 
@@ -122,7 +122,7 @@  discard block
 block discarded – undo
122 122
      */
123 123
     public function makeFirstColumn()
124 124
     {
125
-        if (! $this->columns()) {
125
+        if (!$this->columns()) {
126 126
             return false;
127 127
         }
128 128
 
@@ -166,7 +166,7 @@  discard block
 block discarded – undo
166 166
      */
167 167
     public function removeColumns($columns)
168 168
     {
169
-        if (! empty($columns)) {
169
+        if (!empty($columns)) {
170 170
             foreach ($columns as $columnKey) {
171 171
                 $this->removeColumn($columnKey);
172 172
             }
@@ -331,7 +331,7 @@  discard block
 block discarded – undo
331 331
      */
332 332
     public function hasColumnWhere($attribute, $value)
333 333
     {
334
-        $match = Arr::first($this->columns(), function ($column, $columnKey) use ($attribute, $value) {
334
+        $match = Arr::first($this->columns(), function($column, $columnKey) use ($attribute, $value) {
335 335
             return isset($column[$attribute]) && $column[$attribute] == $value;
336 336
         });
337 337
 
@@ -347,7 +347,7 @@  discard block
 block discarded – undo
347 347
      */
348 348
     public function firstColumnWhere($attribute, $value)
349 349
     {
350
-        return Arr::first($this->columns(), function ($column, $columnKey) use ($attribute, $value) {
350
+        return Arr::first($this->columns(), function($column, $columnKey) use ($attribute, $value) {
351 351
             return isset($column[$attribute]) && $column[$attribute] == $value;
352 352
         });
353 353
     }
@@ -396,8 +396,8 @@  discard block
 block discarded – undo
396 396
      */
397 397
     public function countColumnsWithoutActions()
398 398
     {
399
-        return collect($this->columns())->filter(function ($column, $key) {
400
-            return ! isset($column['hasActions']) || $column['hasActions'] == false;
399
+        return collect($this->columns())->filter(function($column, $key) {
400
+            return !isset($column['hasActions']) || $column['hasActions'] == false;
401 401
         })->count();
402 402
     }
403 403
 
Please login to merge, or discard this patch.