We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
@@ -20,7 +20,7 @@ discard block |
||
20 | 20 | public function getColumnsNames() |
21 | 21 | { |
22 | 22 | return array_values( |
23 | - array_map(function ($item) { |
|
23 | + array_map(function($item) { |
|
24 | 24 | return $item->getName(); |
25 | 25 | }, $this->getColumns()) |
26 | 26 | ); |
@@ -34,7 +34,7 @@ discard block |
||
34 | 34 | */ |
35 | 35 | public function getColumnType(string $columnName) |
36 | 36 | { |
37 | - if (! $this->schemaExists() || ! $this->schema->hasColumn($columnName)) { |
|
37 | + if (!$this->schemaExists() || !$this->schema->hasColumn($columnName)) { |
|
38 | 38 | return 'varchar'; |
39 | 39 | } |
40 | 40 | |
@@ -51,7 +51,7 @@ discard block |
||
51 | 51 | */ |
52 | 52 | public function hasColumn($columnName) |
53 | 53 | { |
54 | - if (! $this->schemaExists()) { |
|
54 | + if (!$this->schemaExists()) { |
|
55 | 55 | return false; |
56 | 56 | } |
57 | 57 | |
@@ -66,7 +66,7 @@ discard block |
||
66 | 66 | */ |
67 | 67 | public function columnIsNullable($columnName) |
68 | 68 | { |
69 | - if (! $this->hasColumn($columnName)) { |
|
69 | + if (!$this->hasColumn($columnName)) { |
|
70 | 70 | return true; |
71 | 71 | } |
72 | 72 | |
@@ -83,7 +83,7 @@ discard block |
||
83 | 83 | */ |
84 | 84 | public function columnHasDefault($columnName) |
85 | 85 | { |
86 | - if (! $this->hasColumn($columnName)) { |
|
86 | + if (!$this->hasColumn($columnName)) { |
|
87 | 87 | return false; |
88 | 88 | } |
89 | 89 | |
@@ -100,7 +100,7 @@ discard block |
||
100 | 100 | */ |
101 | 101 | public function getColumnDefault($columnName) |
102 | 102 | { |
103 | - if (! $this->hasColumn($columnName)) { |
|
103 | + if (!$this->hasColumn($columnName)) { |
|
104 | 104 | return false; |
105 | 105 | } |
106 | 106 | |
@@ -116,7 +116,7 @@ discard block |
||
116 | 116 | */ |
117 | 117 | public function getColumns() |
118 | 118 | { |
119 | - if (! $this->schemaExists()) { |
|
119 | + if (!$this->schemaExists()) { |
|
120 | 120 | return []; |
121 | 121 | } |
122 | 122 | |
@@ -130,7 +130,7 @@ discard block |
||
130 | 130 | */ |
131 | 131 | private function schemaExists() |
132 | 132 | { |
133 | - if (! empty($this->schema)) { |
|
133 | + if (!empty($this->schema)) { |
|
134 | 134 | return true; |
135 | 135 | } |
136 | 136 |
@@ -29,13 +29,13 @@ discard block |
||
29 | 29 | |
30 | 30 | public bool $implicit = true; |
31 | 31 | |
32 | - public static function field(string|array|ValidationRule|Rule $rules = []): self |
|
32 | + public static function field(string | array | ValidationRule | Rule $rules = []): self |
|
33 | 33 | { |
34 | 34 | $instance = new static(); |
35 | 35 | $instance->fieldRules = self::getRulesAsArray($rules); |
36 | 36 | |
37 | 37 | if ($instance->validatesArrays()) { |
38 | - if (! in_array('array', $instance->getFieldRules())) { |
|
38 | + if (!in_array('array', $instance->getFieldRules())) { |
|
39 | 39 | $instance->fieldRules[] = 'array'; |
40 | 40 | } |
41 | 41 | } |
@@ -95,7 +95,7 @@ discard block |
||
95 | 95 | |
96 | 96 | public function getFieldRules(): array |
97 | 97 | { |
98 | - return tap($this->fieldRules, function ($rule) { |
|
98 | + return tap($this->fieldRules, function($rule) { |
|
99 | 99 | if (is_a($rule, BackpackCustomRule::class, true)) { |
100 | 100 | $rule = $rule->getFieldRules(); |
101 | 101 | } |
@@ -110,7 +110,7 @@ discard block |
||
110 | 110 | $rules = explode('|', $rules); |
111 | 111 | } |
112 | 112 | |
113 | - if (! is_array($rules)) { |
|
113 | + if (!is_array($rules)) { |
|
114 | 114 | $rules = [$rules]; |
115 | 115 | } |
116 | 116 | |
@@ -119,10 +119,10 @@ discard block |
||
119 | 119 | |
120 | 120 | protected function ensureValueIsValid($value) |
121 | 121 | { |
122 | - if ($this->validatesArrays() && ! is_array($value)) { |
|
122 | + if ($this->validatesArrays() && !is_array($value)) { |
|
123 | 123 | try { |
124 | 124 | $value = json_decode($value, true) ?? []; |
125 | - } catch(\Exception $e) { |
|
125 | + } catch (\Exception $e) { |
|
126 | 126 | return false; |
127 | 127 | } |
128 | 128 | } |
@@ -141,12 +141,12 @@ discard block |
||
141 | 141 | $attribute => $rules, |
142 | 142 | ], $this->validator->customMessages, $this->getValidatorCustomAttributes($attribute)); |
143 | 143 | |
144 | - return $validator->errors()->messages()[$attribute] ?? (! empty($validator->errors()->messages()) ? current($validator->errors()->messages()) : []); |
|
144 | + return $validator->errors()->messages()[$attribute] ?? (!empty($validator->errors()->messages()) ? current($validator->errors()->messages()) : []); |
|
145 | 145 | } |
146 | 146 | |
147 | 147 | private function getValidatorCustomAttributes(string $attribute): array |
148 | 148 | { |
149 | - if (! is_a($this, ValidGenericAjaxEndpoint::class) && ! Str::contains($attribute, '.*.')) { |
|
149 | + if (!is_a($this, ValidGenericAjaxEndpoint::class) && !Str::contains($attribute, '.*.')) { |
|
150 | 150 | return $this->validator->customAttributes; |
151 | 151 | } |
152 | 152 | |
@@ -157,8 +157,7 @@ discard block |
||
157 | 157 | protected function getValidationAttributeString(string $attribute) |
158 | 158 | { |
159 | 159 | return Str::substrCount($attribute, '.') > 1 ? |
160 | - Str::before($attribute, '.').'.*.'.Str::afterLast($attribute, '.') : |
|
161 | - $attribute; |
|
160 | + Str::before($attribute, '.').'.*.'.Str::afterLast($attribute, '.') : $attribute; |
|
162 | 161 | } |
163 | 162 | |
164 | 163 | protected function validateOnSubmit(string $attribute, mixed $value): array |
@@ -166,7 +165,7 @@ discard block |
||
166 | 165 | return $this->validateRules($attribute, $value); |
167 | 166 | } |
168 | 167 | |
169 | - protected function validateFieldAndFile(string $attribute, null|array $data = null, array|null $customRules = null): array |
|
168 | + protected function validateFieldAndFile(string $attribute, null | array $data = null, array | null $customRules = null): array |
|
170 | 169 | { |
171 | 170 | $fieldErrors = $this->validateFieldRules($attribute, $data, $customRules); |
172 | 171 | |
@@ -178,7 +177,7 @@ discard block |
||
178 | 177 | /** |
179 | 178 | * Implementation. |
180 | 179 | */ |
181 | - public function validateFieldRules(string $attribute, null|array|string|UploadedFile $data = null, array|null $customRules = null): array |
|
180 | + public function validateFieldRules(string $attribute, null | array | string | UploadedFile $data = null, array | null $customRules = null): array |
|
182 | 181 | { |
183 | 182 | $data = $data ?? $this->data; |
184 | 183 | $validationRuleAttribute = $this->getValidationAttributeString($attribute); |
@@ -187,16 +186,16 @@ discard block |
||
187 | 186 | return $this->validateAndGetErrors($validationRuleAttribute, $data, $customRules ?? $this->getFieldRules()); |
188 | 187 | } |
189 | 188 | |
190 | - protected function prepareValidatorData(array|string|UploadedFile $data, string $attribute): array |
|
189 | + protected function prepareValidatorData(array | string | UploadedFile $data, string $attribute): array |
|
191 | 190 | { |
192 | - if ($this->validatesArrays() && is_array($data) && ! Str::contains($attribute, '.')) { |
|
191 | + if ($this->validatesArrays() && is_array($data) && !Str::contains($attribute, '.')) { |
|
193 | 192 | return Arr::has($data, $attribute) ? $data : [$attribute => $data]; |
194 | 193 | } |
195 | 194 | |
196 | 195 | if (Str::contains($attribute, '.')) { |
197 | 196 | $validData = []; |
198 | 197 | |
199 | - Arr::set($validData, $attribute, ! is_array($data) ? $data : Arr::get($data, $attribute)); |
|
198 | + Arr::set($validData, $attribute, !is_array($data) ? $data : Arr::get($data, $attribute)); |
|
200 | 199 | |
201 | 200 | return $validData; |
202 | 201 | } |
@@ -211,7 +210,7 @@ discard block |
||
211 | 210 | $validationRuleAttribute = $this->getValidationAttributeString($attribute); |
212 | 211 | |
213 | 212 | $filesToValidate = Arr::get($items, $attribute); |
214 | - $filesToValidate = is_array($filesToValidate) ? array_filter($filesToValidate, function ($item) { |
|
213 | + $filesToValidate = is_array($filesToValidate) ? array_filter($filesToValidate, function($item) { |
|
215 | 214 | return $item instanceof UploadedFile; |
216 | 215 | }) : (is_a($filesToValidate, UploadedFile::class, true) ? [$filesToValidate] : []); |
217 | 216 |
@@ -20,7 +20,7 @@ discard block |
||
20 | 20 | |
21 | 21 | // if the attribute is not set in the request, and an entry exists, |
22 | 22 | // we will check if there is a previous value, as this field might not have changed. |
23 | - if (! Arr::has($this->data, $attribute) && $entry) { |
|
23 | + if (!Arr::has($this->data, $attribute) && $entry) { |
|
24 | 24 | if (str_contains($attribute, '.') && get_class($entry) === get_class(CrudPanelFacade::getModel())) { |
25 | 25 | $previousValue = Arr::get($this->data, '_order_'.Str::before($attribute, '.')); |
26 | 26 | $previousValue = Arr::get($previousValue, Str::after($attribute, '.')); |
@@ -37,20 +37,20 @@ discard block |
||
37 | 37 | |
38 | 38 | // if the value is an uploaded file, or the attribute is not |
39 | 39 | // set in the request, we force fill the data with the value |
40 | - if ($value instanceof UploadedFile || ! Arr::has($this->data, $attribute)) { |
|
40 | + if ($value instanceof UploadedFile || !Arr::has($this->data, $attribute)) { |
|
41 | 41 | Arr::set($this->data, $attribute, $value); |
42 | 42 | } |
43 | 43 | |
44 | 44 | $fieldErrors = $this->validateFieldRules($attribute); |
45 | 45 | |
46 | - if (! empty($value) && ! empty($this->getFileRules())) { |
|
46 | + if (!empty($value) && !empty($this->getFileRules())) { |
|
47 | 47 | $fileErrors = $this->validateFileRules($attribute, $value); |
48 | 48 | } |
49 | 49 | |
50 | 50 | return array_merge($fieldErrors, $fileErrors ?? []); |
51 | 51 | } |
52 | 52 | |
53 | - public static function field(string|array|ValidationRule|Rule $rules = []): self |
|
53 | + public static function field(string | array | ValidationRule | Rule $rules = []): self |
|
54 | 54 | { |
55 | 55 | return parent::field($rules); |
56 | 56 | } |
@@ -10,7 +10,7 @@ discard block |
||
10 | 10 | |
11 | 11 | class MultipleFiles extends Uploader |
12 | 12 | { |
13 | - public static function for(array $field, $configuration): UploaderInterface |
|
13 | + public static function for (array $field, $configuration): UploaderInterface |
|
14 | 14 | { |
15 | 15 | return (new self($field, $configuration))->multiple(); |
16 | 16 | } |
@@ -29,7 +29,7 @@ discard block |
||
29 | 29 | $previousFiles = []; |
30 | 30 | } |
31 | 31 | |
32 | - if (! is_array($previousFiles) && is_string($previousFiles)) { |
|
32 | + if (!is_array($previousFiles) && is_string($previousFiles)) { |
|
33 | 33 | $previousFiles = json_decode($previousFiles, true); |
34 | 34 | } |
35 | 35 | |
@@ -38,14 +38,14 @@ discard block |
||
38 | 38 | if (in_array($previousFile, $filesToDelete)) { |
39 | 39 | Storage::disk($this->getDisk())->delete($previousFile); |
40 | 40 | |
41 | - $previousFiles = Arr::where($previousFiles, function ($value, $key) use ($previousFile) { |
|
41 | + $previousFiles = Arr::where($previousFiles, function($value, $key) use ($previousFile) { |
|
42 | 42 | return $value != $previousFile; |
43 | 43 | }); |
44 | 44 | } |
45 | 45 | } |
46 | 46 | } |
47 | 47 | |
48 | - if (! is_array($value)) { |
|
48 | + if (!is_array($value)) { |
|
49 | 49 | $value = []; |
50 | 50 | } |
51 | 51 | |
@@ -82,13 +82,13 @@ discard block |
||
82 | 82 | // create a temporary variable that we can unset keys |
83 | 83 | // everytime one is found. That way we avoid iterating |
84 | 84 | // already handled keys (notice we do a deep array copy) |
85 | - $tempFileOrder = array_map(function ($item) { |
|
85 | + $tempFileOrder = array_map(function($item) { |
|
86 | 86 | return $item; |
87 | 87 | }, $fileOrder); |
88 | 88 | |
89 | 89 | foreach ($previousRepeatableValues as $previousRow => $previousFiles) { |
90 | 90 | foreach ($previousFiles ?? [] as $key => $file) { |
91 | - $previousFileInArray = array_filter($tempFileOrder, function ($items, $key) use ($file, $tempFileOrder) { |
|
91 | + $previousFileInArray = array_filter($tempFileOrder, function($items, $key) use ($file, $tempFileOrder) { |
|
92 | 92 | $found = array_search($file, $items ?? [], true); |
93 | 93 | if ($found !== false) { |
94 | 94 | Arr::forget($tempFileOrder, $key.'.'.$found); |
@@ -98,7 +98,7 @@ discard block |
||
98 | 98 | |
99 | 99 | return false; |
100 | 100 | }, ARRAY_FILTER_USE_BOTH); |
101 | - if ($file && ! $previousFileInArray) { |
|
101 | + if ($file && !$previousFileInArray) { |
|
102 | 102 | Storage::disk($this->getDisk())->delete($file); |
103 | 103 | } |
104 | 104 | } |
@@ -10,7 +10,7 @@ discard block |
||
10 | 10 | /** |
11 | 11 | * Static constructor function. |
12 | 12 | */ |
13 | - public static function for(array $field, array $configuration): UploaderInterface; |
|
13 | + public static function for (array $field, array $configuration): UploaderInterface; |
|
14 | 14 | |
15 | 15 | /** |
16 | 16 | * Default implementation functions. |
@@ -30,7 +30,7 @@ discard block |
||
30 | 30 | |
31 | 31 | public function relationship(bool $isRelation): self; |
32 | 32 | |
33 | - public function fake(bool|string $isFake): self; |
|
33 | + public function fake(bool | string $isFake): self; |
|
34 | 34 | |
35 | 35 | /** |
36 | 36 | * Getters. |
@@ -47,7 +47,7 @@ discard block |
||
47 | 47 | |
48 | 48 | public function getExpirationTimeInMinutes(): int; |
49 | 49 | |
50 | - public function getFileName(string|UploadedFile $file): string; |
|
50 | + public function getFileName(string | UploadedFile $file): string; |
|
51 | 51 | |
52 | 52 | public function getRepeatableContainerName(): ?string; |
53 | 53 | |
@@ -67,5 +67,5 @@ discard block |
||
67 | 67 | |
68 | 68 | public function isFake(): bool; |
69 | 69 | |
70 | - public function getFakeAttribute(): bool|string; |
|
70 | + public function getFakeAttribute(): bool | string; |
|
71 | 71 | } |
@@ -25,7 +25,7 @@ discard block |
||
25 | 25 | |
26 | 26 | private bool $deleteWhenEntryIsDeleted = true; |
27 | 27 | |
28 | - private bool|string $attachedToFakeField = false; |
|
28 | + private bool | string $attachedToFakeField = false; |
|
29 | 29 | |
30 | 30 | /** |
31 | 31 | * Cloud disks have the ability to generate temporary URLs to files, should we do it? |
@@ -62,7 +62,7 @@ discard block |
||
62 | 62 | /******************************* |
63 | 63 | * Static methods |
64 | 64 | *******************************/ |
65 | - public static function for(array $crudObject, array $definition): UploaderInterface |
|
65 | + public static function for (array $crudObject, array $definition): UploaderInterface |
|
66 | 66 | { |
67 | 67 | return new static($crudObject, $definition); |
68 | 68 | } |
@@ -103,7 +103,7 @@ discard block |
||
103 | 103 | public function deleteUploadedFiles(Model $entry): void |
104 | 104 | { |
105 | 105 | if ($this->deleteWhenEntryIsDeleted) { |
106 | - if (! in_array(SoftDeletes::class, class_uses_recursive($entry), true)) { |
|
106 | + if (!in_array(SoftDeletes::class, class_uses_recursive($entry), true)) { |
|
107 | 107 | $this->performFileDeletion($entry); |
108 | 108 | |
109 | 109 | return; |
@@ -179,7 +179,7 @@ discard block |
||
179 | 179 | |
180 | 180 | public function getPreviousFiles(Model $entry): mixed |
181 | 181 | { |
182 | - if (! $this->attachedToFakeField) { |
|
182 | + if (!$this->attachedToFakeField) { |
|
183 | 183 | return $this->getOriginalValue($entry); |
184 | 184 | } |
185 | 185 | |
@@ -199,7 +199,7 @@ discard block |
||
199 | 199 | return $this->attachedToFakeField !== false; |
200 | 200 | } |
201 | 201 | |
202 | - public function getFakeAttribute(): bool|string |
|
202 | + public function getFakeAttribute(): bool | string |
|
203 | 203 | { |
204 | 204 | return $this->attachedToFakeField; |
205 | 205 | } |
@@ -221,7 +221,7 @@ discard block |
||
221 | 221 | return $this; |
222 | 222 | } |
223 | 223 | |
224 | - public function fake(bool|string $isFake): self |
|
224 | + public function fake(bool | string $isFake): self |
|
225 | 225 | { |
226 | 226 | $this->attachedToFakeField = $isFake; |
227 | 227 | |
@@ -251,7 +251,7 @@ discard block |
||
251 | 251 | } |
252 | 252 | |
253 | 253 | if ($this->handleMultipleFiles) { |
254 | - if (! isset($entry->getCasts()[$this->getName()]) && is_string($value)) { |
|
254 | + if (!isset($entry->getCasts()[$this->getName()]) && is_string($value)) { |
|
255 | 255 | $entry->{$this->getAttributeName()} = json_decode($value, true); |
256 | 256 | } |
257 | 257 | |
@@ -265,7 +265,7 @@ discard block |
||
265 | 265 | |
266 | 266 | private function deleteFiles(Model $entry) |
267 | 267 | { |
268 | - if (! $this->shouldDeleteFiles()) { |
|
268 | + if (!$this->shouldDeleteFiles()) { |
|
269 | 269 | return; |
270 | 270 | } |
271 | 271 | |
@@ -283,7 +283,7 @@ discard block |
||
283 | 283 | |
284 | 284 | if ($this->handleMultipleFiles) { |
285 | 285 | // ensure we have an array of values when field is not casted in model. |
286 | - if (! isset($entry->getCasts()[$this->name]) && is_string($values)) { |
|
286 | + if (!isset($entry->getCasts()[$this->name]) && is_string($values)) { |
|
287 | 287 | $values = json_decode($values, true); |
288 | 288 | } |
289 | 289 | foreach ($values ?? [] as $value) { |
@@ -300,7 +300,7 @@ discard block |
||
300 | 300 | |
301 | 301 | private function performFileDeletion(Model $entry) |
302 | 302 | { |
303 | - if (! $this->handleRepeatableFiles) { |
|
303 | + if (!$this->handleRepeatableFiles) { |
|
304 | 304 | $this->deleteFiles($entry); |
305 | 305 | |
306 | 306 | return; |
@@ -329,7 +329,7 @@ discard block |
||
329 | 329 | |
330 | 330 | $previousValue = $entry->getOriginal($field); |
331 | 331 | |
332 | - if (! $previousValue) { |
|
332 | + if (!$previousValue) { |
|
333 | 333 | return $previousValue; |
334 | 334 | } |
335 | 335 |
@@ -14,7 +14,7 @@ discard block |
||
14 | 14 | { |
15 | 15 | public bool $handleRepeatableFiles = false; |
16 | 16 | |
17 | - public null|string $repeatableContainerName = null; |
|
17 | + public null | string $repeatableContainerName = null; |
|
18 | 18 | |
19 | 19 | /******************************* |
20 | 20 | * Setters - fluently configure the uploader |
@@ -31,7 +31,7 @@ discard block |
||
31 | 31 | /******************************* |
32 | 32 | * Getters |
33 | 33 | *******************************/ |
34 | - public function getRepeatableContainerName(): null|string |
|
34 | + public function getRepeatableContainerName(): null | string |
|
35 | 35 | { |
36 | 36 | return $this->repeatableContainerName; |
37 | 37 | } |
@@ -159,7 +159,7 @@ discard block |
||
159 | 159 | foreach (app('UploadersRepository')->getRepeatableUploadersFor($this->getRepeatableContainerName()) as $uploader) { |
160 | 160 | $uploadedValues = $uploader->uploadRepeatableFiles($values->pluck($uploader->getAttributeName())->toArray(), $this->getPreviousRepeatableValues($entry, $uploader)); |
161 | 161 | |
162 | - $values = $values->map(function ($item, $key) use ($uploadedValues, $uploader) { |
|
162 | + $values = $values->map(function($item, $key) use ($uploadedValues, $uploader) { |
|
163 | 163 | $item[$uploader->getAttributeName()] = $uploadedValues[$key] ?? null; |
164 | 164 | |
165 | 165 | return $item; |
@@ -190,7 +190,7 @@ discard block |
||
190 | 190 | |
191 | 191 | $values = $entry->{$this->getAttributeName()}; |
192 | 192 | $values = is_string($values) ? json_decode($values, true) : $values; |
193 | - $values = array_map(function ($item) use ($repeatableUploaders) { |
|
193 | + $values = array_map(function($item) use ($repeatableUploaders) { |
|
194 | 194 | foreach ($repeatableUploaders as $upload) { |
195 | 195 | $item[$upload->getAttributeName()] = $this->getValuesWithPathStripped($item, $upload); |
196 | 196 | } |
@@ -205,7 +205,7 @@ discard block |
||
205 | 205 | |
206 | 206 | private function retrieveRepeatableRelationFiles(Model $entry) |
207 | 207 | { |
208 | - switch($this->getRepeatableRelationType()) { |
|
208 | + switch ($this->getRepeatableRelationType()) { |
|
209 | 209 | case 'BelongsToMany': |
210 | 210 | case 'MorphToMany': |
211 | 211 | $pivotClass = app('crud')->getModel()->{$this->getUploaderSubfield()['baseEntity']}()->getPivotClass(); |
@@ -258,12 +258,12 @@ discard block |
||
258 | 258 | $repeatableValues ??= collect($entry->{$this->getRepeatableContainerName()}); |
259 | 259 | |
260 | 260 | foreach (app('UploadersRepository')->getRepeatableUploadersFor($this->getRepeatableContainerName()) as $upload) { |
261 | - if (! $upload->shouldDeleteFiles()) { |
|
261 | + if (!$upload->shouldDeleteFiles()) { |
|
262 | 262 | continue; |
263 | 263 | } |
264 | 264 | $values = $repeatableValues->pluck($upload->getName())->toArray(); |
265 | 265 | foreach ($values as $value) { |
266 | - if (! $value) { |
|
266 | + if (!$value) { |
|
267 | 267 | continue; |
268 | 268 | } |
269 | 269 | |
@@ -286,7 +286,7 @@ discard block |
||
286 | 286 | /** |
287 | 287 | * Given two multidimensional arrays/collections, merge them recursively. |
288 | 288 | */ |
289 | - protected function mergeValuesRecursive(array|Collection $array1, array|Collection $array2): array|Collection |
|
289 | + protected function mergeValuesRecursive(array | Collection $array1, array | Collection $array2): array | Collection |
|
290 | 290 | { |
291 | 291 | $merged = $array1; |
292 | 292 | foreach ($array2 as $key => &$value) { |
@@ -308,7 +308,7 @@ discard block |
||
308 | 308 | { |
309 | 309 | $items = CRUD::getRequest()->input('_order_'.$this->getRepeatableContainerName()) ?? []; |
310 | 310 | |
311 | - array_walk($items, function (&$key, $value) { |
|
311 | + array_walk($items, function(&$key, $value) { |
|
312 | 312 | $requestValue = $key[$this->getName()] ?? null; |
313 | 313 | $key = $this->handleMultipleFiles ? (is_string($requestValue) ? explode(',', $requestValue) : $requestValue) : $requestValue; |
314 | 314 | }); |
@@ -320,22 +320,22 @@ discard block |
||
320 | 320 | { |
321 | 321 | $previousValues = $entry->getOriginal($uploader->getRepeatableContainerName()); |
322 | 322 | |
323 | - if (! is_array($previousValues)) { |
|
323 | + if (!is_array($previousValues)) { |
|
324 | 324 | $previousValues = json_decode($previousValues, true); |
325 | 325 | } |
326 | 326 | |
327 | - if (! empty($previousValues)) { |
|
327 | + if (!empty($previousValues)) { |
|
328 | 328 | $previousValues = array_column($previousValues, $uploader->getName()); |
329 | 329 | } |
330 | 330 | |
331 | 331 | return $previousValues ?? []; |
332 | 332 | } |
333 | 333 | |
334 | - private function getValuesWithPathStripped(array|string|null $item, UploaderInterface $uploader) |
|
334 | + private function getValuesWithPathStripped(array | string | null $item, UploaderInterface $uploader) |
|
335 | 335 | { |
336 | 336 | $uploadedValues = $item[$uploader->getName()] ?? null; |
337 | 337 | if (is_array($uploadedValues)) { |
338 | - return array_map(function ($value) use ($uploader) { |
|
338 | + return array_map(function($value) use ($uploader) { |
|
339 | 339 | return $uploader->getValueWithoutPath($value); |
340 | 340 | }, $uploadedValues); |
341 | 341 | } |
@@ -354,19 +354,19 @@ discard block |
||
354 | 354 | { |
355 | 355 | if (in_array($this->getRepeatableRelationType(), ['BelongsToMany', 'MorphToMany'])) { |
356 | 356 | $pivotAttributes = $entry->getAttributes(); |
357 | - $connectedPivot = $entry->pivotParent->{$this->getRepeatableContainerName()}->where(function ($item) use ($pivotAttributes) { |
|
357 | + $connectedPivot = $entry->pivotParent->{$this->getRepeatableContainerName()}->where(function($item) use ($pivotAttributes) { |
|
358 | 358 | $itemPivotAttributes = $item->pivot->only(array_keys($pivotAttributes)); |
359 | 359 | |
360 | 360 | return $itemPivotAttributes === $pivotAttributes; |
361 | 361 | })->first(); |
362 | 362 | |
363 | - if (! $connectedPivot) { |
|
363 | + if (!$connectedPivot) { |
|
364 | 364 | return; |
365 | 365 | } |
366 | 366 | |
367 | 367 | $files = $connectedPivot->getOriginal()['pivot_'.$this->getAttributeName()]; |
368 | 368 | |
369 | - if (! $files) { |
|
369 | + if (!$files) { |
|
370 | 370 | return; |
371 | 371 | } |
372 | 372 |
@@ -26,7 +26,7 @@ discard block |
||
26 | 26 | { |
27 | 27 | $connection = $connection ?: config('database.default'); |
28 | 28 | |
29 | - self::$schema[$connection] = LazyCollection::make(self::getCreateSchema($connection)->getTables())->mapWithKeys(function ($table, $key) use ($connection) { |
|
29 | + self::$schema[$connection] = LazyCollection::make(self::getCreateSchema($connection)->getTables())->mapWithKeys(function($table, $key) use ($connection) { |
|
30 | 30 | $tableName = is_array($table) ? $table['name'] : $table->getName(); |
31 | 31 | |
32 | 32 | if ($existingTable = self::$schema[$connection][$tableName] ?? false) { |
@@ -65,7 +65,7 @@ discard block |
||
65 | 65 | */ |
66 | 66 | private static function generateDatabaseSchema(string $connection, string $table) |
67 | 67 | { |
68 | - if (! isset(self::$schema[$connection][$table])) { |
|
68 | + if (!isset(self::$schema[$connection][$table])) { |
|
69 | 69 | self::$schema[$connection][$table] = self::mapTable($connection, $table); |
70 | 70 | } |
71 | 71 | } |
@@ -74,20 +74,19 @@ discard block |
||
74 | 74 | { |
75 | 75 | try { |
76 | 76 | $table = method_exists(self::getCreateSchema($connection), 'getTable') ? |
77 | - self::getCreateSchema($connection)->getTable($tableName) : |
|
78 | - self::getCreateSchema($connection)->getColumns($tableName); |
|
77 | + self::getCreateSchema($connection)->getTable($tableName) : self::getCreateSchema($connection)->getColumns($tableName); |
|
79 | 78 | } catch (\Exception $e) { |
80 | 79 | return new Table($tableName, []); |
81 | 80 | } |
82 | 81 | |
83 | - if (! is_array($table) || empty($table)) { |
|
82 | + if (!is_array($table) || empty($table)) { |
|
84 | 83 | return $table; |
85 | 84 | } |
86 | 85 | |
87 | 86 | $schemaManager = self::getSchemaManager($connection); |
88 | 87 | $indexes = $schemaManager->getIndexes($tableName); |
89 | 88 | |
90 | - $indexes = array_map(function ($index) { |
|
89 | + $indexes = array_map(function($index) { |
|
91 | 90 | return $index['columns']; |
92 | 91 | }, $indexes); |
93 | 92 | |
@@ -105,7 +104,7 @@ discard block |
||
105 | 104 | |
106 | 105 | $indexes = self::$schema[$connection][$table]->getIndexes(); |
107 | 106 | |
108 | - $indexes = \Illuminate\Support\Arr::flatten(array_map(function ($index) { |
|
107 | + $indexes = \Illuminate\Support\Arr::flatten(array_map(function($index) { |
|
109 | 108 | return is_string($index) ? $index : $index->getColumns(); |
110 | 109 | }, $indexes)); |
111 | 110 |