Test Failed
Push — dependabot/composer/doctrine/d... ( 1ed270 )
by
unknown
58:38 queued 44:16
created
src/Fields/Types/FileField.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@  discard block
 block discarded – undo
21 21
     {
22 22
         return (new static(new FieldType(FieldType::FILE), $key))
23 23
             ->locales([config('app.fallback_locale', 'nl')])
24
-            ->valueResolver(function ($model = null, $locale = null, FileField $field) {
24
+            ->valueResolver(function($model = null, $locale = null, FileField $field) {
25 25
                 return $field->getMedia($model, $locale);
26 26
             });
27 27
     }
@@ -35,7 +35,7 @@  discard block
 block discarded – undo
35 35
         $files = [];
36 36
         $locale = $locale ?? app()->getLocale();
37 37
 
38
-        $assets = $model->assetRelation->where('pivot.type', $this->getKey())->filter(function ($asset) use ($locale) {
38
+        $assets = $model->assetRelation->where('pivot.type', $this->getKey())->filter(function($asset) use ($locale) {
39 39
             return $asset->pivot->locale == $locale;
40 40
         })->sortBy('pivot.order');
41 41
 
Please login to merge, or discard this patch.
src/Fields/Fields.php 1 patch
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -92,7 +92,7 @@  discard block
 block discarded – undo
92 92
                 continue;
93 93
             }
94 94
 
95
-            $method = 'get' . ucfirst($key);
95
+            $method = 'get'.ucfirst($key);
96 96
 
97 97
             // Reject from list if value does not match expected one
98 98
             if ($value && $value == $field->$method()) {
@@ -108,30 +108,30 @@  discard block
 block discarded – undo
108 108
 
109 109
     public function render(): string
110 110
     {
111
-        return array_reduce($this->fields, function (string $carry, Field $field) {
112
-            return $carry . $field->render();
111
+        return array_reduce($this->fields, function(string $carry, Field $field) {
112
+            return $carry.$field->render();
113 113
         }, '');
114 114
     }
115 115
 
116 116
     public function keyed($key): Fields
117 117
     {
118
-        $keys = (array) $key;
118
+        $keys = (array)$key;
119 119
 
120
-        return new static(array_filter($this->fields, function (Field $field) use ($keys) {
120
+        return new static(array_filter($this->fields, function(Field $field) use ($keys) {
121 121
             return in_array($field->getKey(), $keys);
122 122
         }));
123 123
     }
124 124
 
125 125
     public function tagged($tag): Fields
126 126
     {
127
-        return new static(array_filter($this->fields, function (Field $field) use ($tag) {
127
+        return new static(array_filter($this->fields, function(Field $field) use ($tag) {
128 128
             return $field->tagged($tag);
129 129
         }));
130 130
     }
131 131
 
132 132
     public function untagged(): Fields
133 133
     {
134
-        return new static(array_filter($this->fields, function (Field $field) {
134
+        return new static(array_filter($this->fields, function(Field $field) {
135 135
             return $field->untagged();
136 136
         }));
137 137
     }
@@ -173,7 +173,7 @@  discard block
 block discarded – undo
173 173
     public function offsetGet($offset)
174 174
     {
175 175
         if (!isset($this->fields[$offset])) {
176
-            throw new \RuntimeException('No field found by key [' . $offset . ']');
176
+            throw new \RuntimeException('No field found by key ['.$offset.']');
177 177
         }
178 178
 
179 179
         return $this->fields[$offset];
@@ -182,7 +182,7 @@  discard block
 block discarded – undo
182 182
     public function offsetSet($offset, $value)
183 183
     {
184 184
         if (!$value instanceof Field) {
185
-            throw new \InvalidArgumentException('Passed value must be of type ' . Field::class);
185
+            throw new \InvalidArgumentException('Passed value must be of type '.Field::class);
186 186
         }
187 187
 
188 188
         $this->fields[$offset] = $value;
@@ -212,7 +212,7 @@  discard block
 block discarded – undo
212 212
 
213 213
     private function validateFields(array $fields)
214 214
     {
215
-        array_map(function (Field $field) {
215
+        array_map(function(Field $field) {
216 216
         }, $fields);
217 217
     }
218 218
 
Please login to merge, or discard this patch.
src/Fields/FieldRepository.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@
 block discarded – undo
26 26
 
27 27
         if ($reference->hasFragmentKey()) {
28 28
             if (!$field instanceof FragmentField) {
29
-                throw new \RuntimeException('Field ' . $field->getKey() . ' was expected to be a fragmentfield but its not.');
29
+                throw new \RuntimeException('Field '.$field->getKey().' was expected to be a fragmentfield but its not.');
30 30
             }
31 31
 
32 32
             $firstFragment = $field->getFragments()[0];
Please login to merge, or discard this patch.
src/Management/AbstractManager.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -91,7 +91,7 @@  discard block
 block discarded – undo
91 91
             return $this->indexPagination($builder);
92 92
         }
93 93
 
94
-        return $builder->get()->map(function ($model) {
94
+        return $builder->get()->map(function($model) {
95 95
             return (new static($this->registration))->manage($model);
96 96
         });
97 97
     }
@@ -119,7 +119,7 @@  discard block
 block discarded – undo
119 119
     {
120 120
         $paginator = $builder->paginate($this->pageCount);
121 121
 
122
-        $modifiedCollection = $builder->paginate($this->pageCount)->getCollection()->transform(function ($model) {
122
+        $modifiedCollection = $builder->paginate($this->pageCount)->getCollection()->transform(function($model) {
123 123
             return (new static($this->registration))->manage($model);
124 124
         });
125 125
 
@@ -235,7 +235,7 @@  discard block
 block discarded – undo
235 235
 
236 236
     public function editFields(): Fields
237 237
     {
238
-        return $this->fieldsWithAssistantFields()->map(function (Field $field) {
238
+        return $this->fieldsWithAssistantFields()->map(function(Field $field) {
239 239
             return $field->model($this->model);
240 240
         });
241 241
     }
@@ -328,7 +328,7 @@  discard block
 block discarded – undo
328 328
             static::$bootedTraitMethods[$baseMethod] = [];
329 329
 
330 330
             foreach (class_uses_recursive($class) as $trait) {
331
-                $method = class_basename($trait) . ucfirst($baseMethod);
331
+                $method = class_basename($trait).ucfirst($baseMethod);
332 332
 
333 333
                 if (method_exists($class, $method) && !in_array($method, static::$bootedTraitMethods[$baseMethod])) {
334 334
                     static::$bootedTraitMethods[$baseMethod][] = lcfirst($method);
Please login to merge, or discard this patch.
src/Fields/Types/FieldType.php 1 patch
Spacing   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -6,19 +6,19 @@
 block discarded – undo
6 6
 
7 7
 class FieldType
8 8
 {
9
-    const INPUT = 'input';   // oneliner text (input)
10
-    const TEXT = 'text';    // Plain text (textarea)
9
+    const INPUT = 'input'; // oneliner text (input)
10
+    const TEXT = 'text'; // Plain text (textarea)
11 11
     const NUMBER = 'number'; // number
12 12
     const RANGE = 'range'; // range slider
13
-    const DATE = 'date';    // Timestamp input
14
-    const PHONENUMBER = 'phonenumber';    // Timestamp input
15
-    const HTML = 'html';    // Html text (wysiwyg)
16
-    const SELECT = 'select';  // Select options
17
-    const FILE = 'file';  // regular file
18
-    const IMAGE = 'image';  // image (slim uploader)
19
-    const RADIO = 'radio';  // radio select
20
-    const CHECKBOX = 'checkbox';  // checkbox select
21
-    const PAGEBUILDER = 'pagebuilder';  // the most special field there is...
13
+    const DATE = 'date'; // Timestamp input
14
+    const PHONENUMBER = 'phonenumber'; // Timestamp input
15
+    const HTML = 'html'; // Html text (wysiwyg)
16
+    const SELECT = 'select'; // Select options
17
+    const FILE = 'file'; // regular file
18
+    const IMAGE = 'image'; // image (slim uploader)
19
+    const RADIO = 'radio'; // radio select
20
+    const CHECKBOX = 'checkbox'; // checkbox select
21
+    const PAGEBUILDER = 'pagebuilder'; // the most special field there is...
22 22
     const FRAGMENT = 'fragment';
23 23
     const PAGE = 'page'; // select a page (also a special field)
24 24
 
Please login to merge, or discard this patch.
src/System/HealthMonitor/Checks/HomepageAccessibleCheck.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@
 block discarded – undo
33 33
 
34 34
     public function message(): string
35 35
     {
36
-        return 'Het lijkt erop dat de homepagina niet meer bereikbaar is. <a href="' . route('chief.back.settings.edit') . '" class="text-secondary-800 underline hover:text-white">Kies een nieuwe</a>.';
36
+        return 'Het lijkt erop dat de homepagina niet meer bereikbaar is. <a href="'.route('chief.back.settings.edit').'" class="text-secondary-800 underline hover:text-white">Kies een nieuwe</a>.';
37 37
     }
38 38
 
39 39
     public function notifiers(): array
Please login to merge, or discard this patch.
src/System/HealthMonitor/Checks/HomepageSetCheck.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@
 block discarded – undo
16 16
 
17 17
     public function message(): string
18 18
     {
19
-        return 'Het lijkt erop dat er geen homepagina ingesteld is. Stel er een in hier: <a href="' . route('chief.back.settings.edit') . '" class="text-secondary-800 underline hover:text-white">Settings</a>';
19
+        return 'Het lijkt erop dat er geen homepagina ingesteld is. Stel er een in hier: <a href="'.route('chief.back.settings.edit').'" class="text-secondary-800 underline hover:text-white">Settings</a>';
20 20
     }
21 21
 
22 22
     public function notifiers(): array
Please login to merge, or discard this patch.
src/System/HealthMonitor/Monitor.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
 
34 34
                 return;
35
-            } else {
35
+            }else {
36 36
                 foreach ($notifiers as $notifier) {
37 37
                     app($notifier)->onSuccess($checkInstance);
38 38
                 }
Please login to merge, or discard this patch.
src/Relations/Relation.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -54,7 +54,7 @@  discard block
 block discarded – undo
54 54
             ->orderBy('sort', 'ASC')
55 55
             ->get();
56 56
 
57
-        return $relations->map(function (Relation $relation) {
57
+        return $relations->map(function(Relation $relation) {
58 58
             $parent = $relation->parent;
59 59
             $parent->relation = $relation;
60 60
 
@@ -70,13 +70,13 @@  discard block
 block discarded – undo
70 70
             ->orderBy('sort', 'ASC')
71 71
             ->get();
72 72
 
73
-        return $relations->map(function (Relation $relation) use ($parent_type, $parent_id) {
73
+        return $relations->map(function(Relation $relation) use ($parent_type, $parent_id) {
74 74
 
75 75
             // It could be that the child itself is soft-deleted, if this is the case, we will ignore it and move on.
76 76
             if (!$child = $relation->child) {
77 77
                 if (!$relation->child()->withTrashed()->first()) {
78 78
                     // If we cannot retrieve it then the relation type is possibly wrong, this is a database inconsistency and should be addressed
79
-                    throw new \DomainException('Corrupt relation reference. Related child [' . $relation->child_type . '@' . $relation->child_id . '] could not be retrieved for parent [' . $parent_type . '@' . $parent_id . ']. Make sure the morph key can resolve to a valid class.');
79
+                    throw new \DomainException('Corrupt relation reference. Related child ['.$relation->child_type.'@'.$relation->child_id.'] could not be retrieved for parent ['.$parent_type.'@'.$parent_id.']. Make sure the morph key can resolve to a valid class.');
80 80
                 }
81 81
 
82 82
                 return null;
@@ -88,7 +88,7 @@  discard block
 block discarded – undo
88 88
         })
89 89
 
90 90
             // In case of soft-deleted entries, this will be null and should be ignored. We make sure that keys are reset in case of removed child
91
-            ->reject(function ($child) {
91
+            ->reject(function($child) {
92 92
                 return is_null($child);
93 93
             })
94 94
             ->values();
@@ -105,10 +105,10 @@  discard block
 block discarded – undo
105 105
 
106 106
     public static function deleteRelationsOf($type, $id)
107 107
     {
108
-        $relations = static::where(function ($query) use ($type, $id) {
108
+        $relations = static::where(function($query) use ($type, $id) {
109 109
             return $query->where('parent_type', $type)
110 110
                 ->where('parent_id', $id);
111
-        })->orWhere(function ($query) use ($type, $id) {
111
+        })->orWhere(function($query) use ($type, $id) {
112 112
             return $query->where('child_type', $type)
113 113
                 ->where('child_id', $id);
114 114
         })->get();
@@ -120,7 +120,7 @@  discard block
 block discarded – undo
120 120
 
121 121
     public static function deleteAllChildRelationsOf($type, $id)
122 122
     {
123
-        $relations = static::where(function ($query) use ($type, $id) {
123
+        $relations = static::where(function($query) use ($type, $id) {
124 124
             return $query->where('parent_type', $type)
125 125
                 ->where('parent_id', $id);
126 126
         })->get();
@@ -132,7 +132,7 @@  discard block
 block discarded – undo
132 132
 
133 133
     public static function deleteAllParentRelationsOf($type, $id)
134 134
     {
135
-        $relations = static::where(function ($query) use ($type, $id) {
135
+        $relations = static::where(function($query) use ($type, $id) {
136 136
             return $query->where('child_type', $type)
137 137
                 ->where('child_id', $id);
138 138
         })->get();
Please login to merge, or discard this patch.