We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
@@ -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 | 36 | if ($instance->validatesArrays()) { |
| 37 | - if (! in_array('array', $instance->getFieldRules())) { |
|
| 37 | + if (!in_array('array', $instance->getFieldRules())) { |
|
| 38 | 38 | $instance->fieldRules[] = 'array'; |
| 39 | 39 | } |
| 40 | 40 | } |
@@ -94,7 +94,7 @@ discard block |
||
| 94 | 94 | |
| 95 | 95 | public function getFieldRules(): array |
| 96 | 96 | { |
| 97 | - return tap($this->fieldRules, function ($rule) { |
|
| 97 | + return tap($this->fieldRules, function($rule) { |
|
| 98 | 98 | if (is_a($rule, BackpackCustomRule::class, true)) { |
| 99 | 99 | $rule = $rule->getFieldRules(); |
| 100 | 100 | } |
@@ -109,7 +109,7 @@ discard block |
||
| 109 | 109 | $rules = explode('|', $rules); |
| 110 | 110 | } |
| 111 | 111 | |
| 112 | - if (! is_array($rules)) { |
|
| 112 | + if (!is_array($rules)) { |
|
| 113 | 113 | $rules = [$rules]; |
| 114 | 114 | } |
| 115 | 115 | |
@@ -118,10 +118,10 @@ discard block |
||
| 118 | 118 | |
| 119 | 119 | protected function ensureValueIsValid($value) |
| 120 | 120 | { |
| 121 | - if ($this->validatesArrays() && ! is_array($value)) { |
|
| 121 | + if ($this->validatesArrays() && !is_array($value)) { |
|
| 122 | 122 | try { |
| 123 | 123 | $value = json_decode($value, true) ?? []; |
| 124 | - } catch(\Exception $e) { |
|
| 124 | + } catch (\Exception $e) { |
|
| 125 | 125 | return false; |
| 126 | 126 | } |
| 127 | 127 | } |
@@ -146,8 +146,7 @@ discard block |
||
| 146 | 146 | protected function getValidationAttributeString(string $attribute) |
| 147 | 147 | { |
| 148 | 148 | return Str::substrCount($attribute, '.') > 1 ? |
| 149 | - Str::before($attribute, '.').'.*.'.Str::afterLast($attribute, '.') : |
|
| 150 | - $attribute; |
|
| 149 | + Str::before($attribute, '.').'.*.'.Str::afterLast($attribute, '.') : $attribute; |
|
| 151 | 150 | } |
| 152 | 151 | |
| 153 | 152 | protected function validateOnSubmit(string $attribute, mixed $value): array |
@@ -155,7 +154,7 @@ discard block |
||
| 155 | 154 | return $this->validateRules($attribute, $value); |
| 156 | 155 | } |
| 157 | 156 | |
| 158 | - protected function validateFieldAndFile(string $attribute, null|array $data = null, array|null $customRules = null): array |
|
| 157 | + protected function validateFieldAndFile(string $attribute, null | array $data = null, array | null $customRules = null): array |
|
| 159 | 158 | { |
| 160 | 159 | $fieldErrors = $this->validateFieldRules($attribute, $data, $customRules); |
| 161 | 160 | $fileErrors = $this->validateFileRules($attribute, $data); |
@@ -166,7 +165,7 @@ discard block |
||
| 166 | 165 | /** |
| 167 | 166 | * Implementation. |
| 168 | 167 | */ |
| 169 | - public function validateFieldRules(string $attribute, null|array|UploadedFile $data = null, array|null $customRules = null): array |
|
| 168 | + public function validateFieldRules(string $attribute, null | array | UploadedFile $data = null, array | null $customRules = null): array |
|
| 170 | 169 | { |
| 171 | 170 | $data = $data ?? $this->data; |
| 172 | 171 | $validationRuleAttribute = $this->getValidationAttributeString($attribute); |
@@ -176,7 +175,7 @@ discard block |
||
| 176 | 175 | return $this->validateAndGetErrors($validationRuleAttribute, $data, $customRules ?? $this->getFieldRules()); |
| 177 | 176 | } |
| 178 | 177 | |
| 179 | - protected function prepareValidatorData(array|UploadedFile $data, string $attribute): array |
|
| 178 | + protected function prepareValidatorData(array | UploadedFile $data, string $attribute): array |
|
| 180 | 179 | { |
| 181 | 180 | if ($this->validatesArrays() && is_array($data)) { |
| 182 | 181 | return Arr::has($data, $attribute) ? $data : [$attribute => Arr::get($data, $attribute)]; |
@@ -193,13 +192,13 @@ discard block |
||
| 193 | 192 | $errors = []; |
| 194 | 193 | // we validate each file individually to avoid returning messages like: `field.0` is not a pdf. |
| 195 | 194 | foreach ($items as $sentFiles) { |
| 196 | - if (! is_array($sentFiles)) { |
|
| 195 | + if (!is_array($sentFiles)) { |
|
| 197 | 196 | try { |
| 198 | 197 | if (is_file($sentFiles)) { |
| 199 | 198 | $errors[] = $this->validateAndGetErrors($attribute, [$attribute => $sentFiles], $this->getFileRules()); |
| 200 | 199 | } |
| 201 | 200 | continue; |
| 202 | - } catch(\Exception) { |
|
| 201 | + } catch (\Exception) { |
|
| 203 | 202 | $errors[] = 'Unknown datatype, aborting upload process.'; |
| 204 | 203 | break; |
| 205 | 204 | } |