Skip to content

Commit 6303546

Browse files
Baspagithub-actions[bot]
authored andcommitted
Fix styling
1 parent 119b95e commit 6303546

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Concerns/CanMapDynamicFields.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ private function resolveFormFields(mixed $record = null): array
110110
$customFields = $this->resolveCustomFields();
111111

112112
return $record->fields
113-
->map(fn($field) => $this->resolveFieldInput($field, $customFields))
113+
->map(fn ($field) => $this->resolveFieldInput($field, $customFields))
114114
->filter()
115115
->values()
116116
->all();
@@ -119,7 +119,7 @@ private function resolveFormFields(mixed $record = null): array
119119
private function resolveCustomFields(): Collection
120120
{
121121
return collect(Fields::getFields())
122-
->map(fn($fieldClass) => new $fieldClass);
122+
->map(fn ($fieldClass) => new $fieldClass);
123123
}
124124

125125
private function resolveFieldInput(Model $field, Collection $customFields, mixed $record = null): ?object

0 commit comments

Comments
 (0)