Skip to content

Commit 473a32c

Browse files
committed
Code style
1 parent 30ad7b7 commit 473a32c

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

helper/field.php

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,10 @@ protected function createValue()
167167
&& $this->column->getType()->getConfig()['usetitles']
168168
) {
169169
if ($this->column->isMulti()) {
170-
$preparedValue = array_map(static fn($val) => json_encode([$val, null], JSON_THROW_ON_ERROR), $preparedValue);
170+
$preparedValue = array_map(
171+
static fn($val) => json_encode([$val, null], JSON_THROW_ON_ERROR),
172+
$preparedValue
173+
);
171174
} else {
172175
$preparedValue = json_encode([$preparedValue, null], JSON_THROW_ON_ERROR);
173176
}

0 commit comments

Comments
 (0)