Skip to content

Commit 2a01fd1

Browse files
Baspagithub-actions[bot]
authored andcommitted
Fix styling
1 parent a322c78 commit 2a01fd1

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, bool $isNested = false)
110110
$customFields = $this->resolveCustomFields();
111111

112112
return $record->fields
113-
->map(fn($field) => $this->resolveFieldInput($field, $customFields, $record, $isNested))
113+
->map(fn ($field) => $this->resolveFieldInput($field, $customFields, $record, $isNested))
114114
->filter()
115115
->values()
116116
->all();
@@ -119,7 +119,7 @@ private function resolveFormFields(mixed $record = null, bool $isNested = false)
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, bool $isNested = false): ?object

0 commit comments

Comments
 (0)