We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
@@ -14,7 +14,7 @@ discard block |
||
14 | 14 | $value = $value ?? CRUD::getRequest()->get($this->getName()); |
15 | 15 | $previousImage = $this->getPreviousFiles($entry); |
16 | 16 | |
17 | - if (! $value && $previousImage) { |
|
17 | + if (!$value && $previousImage) { |
|
18 | 18 | Storage::disk($this->getDisk())->delete($previousImage); |
19 | 19 | |
20 | 20 | return null; |
@@ -67,6 +67,6 @@ discard block |
||
67 | 67 | |
68 | 68 | protected function shouldKeepPreviousValueUnchanged(Model $entry, $entryValue): bool |
69 | 69 | { |
70 | - return $entry->exists && is_string($entryValue) && ! Str::startsWith($entryValue, 'data:image'); |
|
70 | + return $entry->exists && is_string($entryValue) && !Str::startsWith($entryValue, 'data:image'); |
|
71 | 71 | } |
72 | 72 | } |
@@ -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 | |
@@ -218,7 +218,7 @@ discard block |
||
218 | 218 | $value = $entry->{$this->getAttributeName()}; |
219 | 219 | |
220 | 220 | if ($this->handleMultipleFiles) { |
221 | - if (! isset($entry->getCasts()[$this->getName()]) && is_string($value)) { |
|
221 | + if (!isset($entry->getCasts()[$this->getName()]) && is_string($value)) { |
|
222 | 222 | $entry->{$this->getAttributeName()} = json_decode($value, true); |
223 | 223 | } |
224 | 224 | |
@@ -250,7 +250,7 @@ discard block |
||
250 | 250 | |
251 | 251 | if ($this->handleMultipleFiles) { |
252 | 252 | // ensure we have an array of values when field is not casted in model. |
253 | - if (! isset($entry->getCasts()[$this->name]) && is_string($values)) { |
|
253 | + if (!isset($entry->getCasts()[$this->name]) && is_string($values)) { |
|
254 | 254 | $values = json_decode($values, true); |
255 | 255 | } |
256 | 256 | foreach ($values ?? [] as $value) { |
@@ -267,7 +267,7 @@ discard block |
||
267 | 267 | |
268 | 268 | private function performFileDeletion(Model $entry) |
269 | 269 | { |
270 | - if (! $this->handleRepeatableFiles) { |
|
270 | + if (!$this->handleRepeatableFiles) { |
|
271 | 271 | $this->deleteFiles($entry); |
272 | 272 | |
273 | 273 | return; |
@@ -294,7 +294,7 @@ discard block |
||
294 | 294 | |
295 | 295 | $previousValue = $entry->getOriginal($field ?? $this->getAttributeName()); |
296 | 296 | |
297 | - if (! $previousValue) { |
|
297 | + if (!$previousValue) { |
|
298 | 298 | return $previousValue; |
299 | 299 | } |
300 | 300 |
@@ -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 |
@@ -33,7 +33,7 @@ discard block |
||
33 | 33 | */ |
34 | 34 | public function markAsHandled(string $objectName): void |
35 | 35 | { |
36 | - if (! in_array($objectName, $this->handledUploaders)) { |
|
36 | + if (!in_array($objectName, $this->handledUploaders)) { |
|
37 | 37 | $this->handledUploaders[] = $objectName; |
38 | 38 | } |
39 | 39 | } |
@@ -83,7 +83,7 @@ discard block |
||
83 | 83 | */ |
84 | 84 | public function registerRepeatableUploader(string $uploadName, UploaderInterface $uploader): void |
85 | 85 | { |
86 | - if (! array_key_exists($uploadName, $this->repeatableUploaders) || ! in_array($uploader, $this->repeatableUploaders[$uploadName])) { |
|
86 | + if (!array_key_exists($uploadName, $this->repeatableUploaders) || !in_array($uploader, $this->repeatableUploaders[$uploadName])) { |
|
87 | 87 | $this->repeatableUploaders[$uploadName][] = $uploader; |
88 | 88 | } |
89 | 89 | } |
@@ -117,7 +117,7 @@ discard block |
||
117 | 117 | */ |
118 | 118 | public function getRegisteredUploadNames(string $uploadName): array |
119 | 119 | { |
120 | - return array_map(function ($uploader) { |
|
120 | + return array_map(function($uploader) { |
|
121 | 121 | return $uploader->getName(); |
122 | 122 | }, $this->getRepeatableUploadersFor($uploadName)); |
123 | 123 | } |
@@ -154,16 +154,16 @@ discard block |
||
154 | 154 | abort(500, 'Could not find the field in the CRUD fields.'); |
155 | 155 | } |
156 | 156 | |
157 | - if (! $uploaderMacro = $this->getUploadCrudObjectMacroType($crudObject)) { |
|
157 | + if (!$uploaderMacro = $this->getUploadCrudObjectMacroType($crudObject)) { |
|
158 | 158 | abort(500, 'There is no uploader defined for the given field type.'); |
159 | 159 | } |
160 | 160 | |
161 | - if (! $this->isValidUploadField($crudObject, $uploaderMacro)) { |
|
161 | + if (!$this->isValidUploadField($crudObject, $uploaderMacro)) { |
|
162 | 162 | abort(500, 'Invalid field for upload.'); |
163 | 163 | } |
164 | 164 | |
165 | 165 | $uploaderConfiguration = $crudObject[$uploaderMacro] ?? []; |
166 | - $uploaderConfiguration = ! is_array($uploaderConfiguration) ? [] : $uploaderConfiguration; |
|
166 | + $uploaderConfiguration = !is_array($uploaderConfiguration) ? [] : $uploaderConfiguration; |
|
167 | 167 | $uploaderClass = $this->getUploadFor($crudObject['type'], $uploaderMacro); |
168 | 168 | |
169 | 169 | return new $uploaderClass(['name' => $requestInputName], $uploaderConfiguration); |
@@ -181,11 +181,11 @@ discard block |
||
181 | 181 | { |
182 | 182 | if (Str::contains($crudObject['name'], '#')) { |
183 | 183 | $container = Str::before($crudObject['name'], '#'); |
184 | - $field = array_filter(CRUD::fields()[$container]['subfields'] ?? [], function ($item) use ($crudObject, $uploaderMacro) { |
|
184 | + $field = array_filter(CRUD::fields()[$container]['subfields'] ?? [], function($item) use ($crudObject, $uploaderMacro) { |
|
185 | 185 | return $item['name'] === $crudObject['name'] && in_array($item['type'], $this->getAjaxUploadTypes($uploaderMacro)); |
186 | 186 | }); |
187 | 187 | |
188 | - return ! empty($field); |
|
188 | + return !empty($field); |
|
189 | 189 | } |
190 | 190 | |
191 | 191 | return in_array($crudObject['type'], $this->getAjaxUploadTypes($uploaderMacro)); |
@@ -24,20 +24,20 @@ |
||
24 | 24 | { |
25 | 25 | $entry = CrudPanelFacade::getCurrentEntry(); |
26 | 26 | |
27 | - if (! array_key_exists($attribute, $this->data) && $entry) { |
|
27 | + if (!array_key_exists($attribute, $this->data) && $entry) { |
|
28 | 28 | return []; |
29 | 29 | } |
30 | 30 | |
31 | 31 | $fieldErrors = $this->validateFieldRules($attribute, $value); |
32 | 32 | |
33 | - if (! empty($value) && ! empty($this->getFileRules())) { |
|
33 | + if (!empty($value) && !empty($this->getFileRules())) { |
|
34 | 34 | $fileErrors = $this->validateFileRules($attribute, $value); |
35 | 35 | } |
36 | 36 | |
37 | 37 | return array_merge($fieldErrors, $fileErrors ?? []); |
38 | 38 | } |
39 | 39 | |
40 | - public static function field(string|array|ValidationRule|Rule $rules = []): self |
|
40 | + public static function field(string | array | ValidationRule | Rule $rules = []): self |
|
41 | 41 | { |
42 | 42 | return parent::field($rules); |
43 | 43 | } |
@@ -28,13 +28,13 @@ discard block |
||
28 | 28 | |
29 | 29 | public bool $implicit = true; |
30 | 30 | |
31 | - public static function field(string|array|ValidationRule|Rule $rules = []): self |
|
31 | + public static function field(string | array | ValidationRule | Rule $rules = []): self |
|
32 | 32 | { |
33 | 33 | $instance = new static(); |
34 | 34 | $instance->fieldRules = self::getRulesAsArray($rules); |
35 | 35 | |
36 | - if($instance->validatesArrays()) { |
|
37 | - if (! in_array('array', $instance->getFieldRules())) { |
|
36 | + if ($instance->validatesArrays()) { |
|
37 | + if (!in_array('array', $instance->getFieldRules())) { |
|
38 | 38 | $instance->fieldRules[] = 'array'; |
39 | 39 | } |
40 | 40 | } |
@@ -44,7 +44,7 @@ discard block |
||
44 | 44 | $instance = new static(); |
45 | 45 | $instance->fieldRules = self::getRulesAsArray($rules); |
46 | 46 | |
47 | - if (! in_array('array', $instance->getFieldRules())) { |
|
47 | + if (!in_array('array', $instance->getFieldRules())) { |
|
48 | 48 | $instance->fieldRules[] = 'array'; |
49 | 49 | } |
50 | 50 | |
@@ -103,7 +103,7 @@ discard block |
||
103 | 103 | |
104 | 104 | public function getFieldRules(): array |
105 | 105 | { |
106 | - return tap($this->fieldRules, function ($rule) { |
|
106 | + return tap($this->fieldRules, function($rule) { |
|
107 | 107 | if (is_a($rule, BackpackCustomRule::class, true)) { |
108 | 108 | $rule = $rule->getFieldRules(); |
109 | 109 | } |
@@ -118,7 +118,7 @@ discard block |
||
118 | 118 | $rules = explode('|', $rules); |
119 | 119 | } |
120 | 120 | |
121 | - if (! is_array($rules)) { |
|
121 | + if (!is_array($rules)) { |
|
122 | 122 | $rules = [$rules]; |
123 | 123 | } |
124 | 124 | |
@@ -127,10 +127,10 @@ discard block |
||
127 | 127 | |
128 | 128 | protected function ensureValueIsValid($value) |
129 | 129 | { |
130 | - if($this->validatesArrays() && ! is_array($value)) { |
|
130 | + if ($this->validatesArrays() && !is_array($value)) { |
|
131 | 131 | try { |
132 | 132 | $value = json_decode($value, true) ?? []; |
133 | - } catch(\Exception $e) { |
|
133 | + } catch (\Exception $e) { |
|
134 | 134 | return false; |
135 | 135 | } |
136 | 136 | } |
@@ -154,8 +154,7 @@ discard block |
||
154 | 154 | protected function getValidationAttributeString(string $attribute) |
155 | 155 | { |
156 | 156 | return Str::substrCount($attribute, '.') > 1 ? |
157 | - Str::before($attribute, '.').'.*.'.Str::afterLast($attribute, '.') : |
|
158 | - $attribute; |
|
157 | + Str::before($attribute, '.').'.*.'.Str::afterLast($attribute, '.') : $attribute; |
|
159 | 158 | } |
160 | 159 | |
161 | 160 | protected function validateOnSubmit(string $attribute, mixed $value): array |
@@ -163,7 +162,7 @@ discard block |
||
163 | 162 | return $this->validateRules($attribute, $value); |
164 | 163 | } |
165 | 164 | |
166 | - protected function validateFieldAndFile(string $attribute, null|array $data = null, array|null $customRules = null): array |
|
165 | + protected function validateFieldAndFile(string $attribute, null | array $data = null, array | null $customRules = null): array |
|
167 | 166 | { |
168 | 167 | $fieldErrors = $this->validateFieldRules($attribute, $data, $customRules); |
169 | 168 | $fileErrors = $this->validateFileRules($attribute, $data); |
@@ -174,7 +173,7 @@ discard block |
||
174 | 173 | /** |
175 | 174 | * Implementation. |
176 | 175 | */ |
177 | - public function validateFieldRules(string $attribute, null|array|UploadedFile $data = null, array|null $customRules = null): array |
|
176 | + public function validateFieldRules(string $attribute, null | array | UploadedFile $data = null, array | null $customRules = null): array |
|
178 | 177 | { |
179 | 178 | $data = $data ?? $this->data; |
180 | 179 | $validationRuleAttribute = $this->getValidationAttributeString($attribute); |
@@ -184,10 +183,10 @@ discard block |
||
184 | 183 | return $this->validateAndGetErrors($validationRuleAttribute, $data, $customRules ?? $this->getFieldRules()); |
185 | 184 | } |
186 | 185 | |
187 | - protected function prepareValidatorData(array|UploadedFile $data, string $attribute): array |
|
186 | + protected function prepareValidatorData(array | UploadedFile $data, string $attribute): array |
|
188 | 187 | { |
189 | 188 | |
190 | - if($this->validatesArrays() && is_array($data)) { |
|
189 | + if ($this->validatesArrays() && is_array($data)) { |
|
191 | 190 | return Arr::has($data, $attribute) ? $data : [$attribute => Arr::get($data, $attribute)]; |
192 | 191 | } |
193 | 192 | return [$attribute => $data]; |
@@ -201,13 +200,13 @@ discard block |
||
201 | 200 | $errors = []; |
202 | 201 | // we validate each file individually to avoid returning messages like: `field.0` is not a pdf. |
203 | 202 | foreach ($items as $sentFiles) { |
204 | - if(!is_array($sentFiles)) { |
|
203 | + if (!is_array($sentFiles)) { |
|
205 | 204 | try { |
206 | 205 | if (is_file($sentFiles)) { |
207 | 206 | $errors[] = $this->validateAndGetErrors($attribute, [$attribute => $sentFiles], $this->getFileRules()); |
208 | 207 | } |
209 | 208 | continue; |
210 | - }catch(\Exception) { |
|
209 | + } catch (\Exception) { |
|
211 | 210 | $errors[] = 'Unknown datatype, aborting upload process.'; |
212 | 211 | break; |
213 | 212 | } |
@@ -207,7 +207,7 @@ |
||
207 | 207 | $errors[] = $this->validateAndGetErrors($attribute, [$attribute => $sentFiles], $this->getFileRules()); |
208 | 208 | } |
209 | 209 | continue; |
210 | - }catch(\Exception) { |
|
210 | + } catch(\Exception) { |
|
211 | 211 | $errors[] = 'Unknown datatype, aborting upload process.'; |
212 | 212 | break; |
213 | 213 | } |