Skip to content

Commit 00206eb

Browse files
Baspagithub-actions[bot]
authored andcommitted
Fix styling
1 parent 7a1073f commit 00206eb

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
@@ -111,7 +111,7 @@ private function resolveFormFields(?Model $record = null): array
111111
$customFields = $this->resolveCustomFields();
112112

113113
return $record->fields
114-
->map(fn($field) => $this->resolveFieldInput($field, $customFields))
114+
->map(fn ($field) => $this->resolveFieldInput($field, $customFields))
115115
->filter()
116116
->values()
117117
->all();
@@ -120,7 +120,7 @@ private function resolveFormFields(?Model $record = null): array
120120
private function resolveCustomFields(): Collection
121121
{
122122
return collect(Fields::getFields())
123-
->map(fn($fieldClass) => new $fieldClass);
123+
->map(fn ($fieldClass) => new $fieldClass);
124124
}
125125

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

0 commit comments

Comments
 (0)