Skip to content

Commit 891bf54

Browse files
committed
Fix Coding standard
1 parent 4109b00 commit 891bf54

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/LiveComponent/src/ComponentWithFormTrait.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,7 @@ private function extractFormValues(FormView $formView): array
270270
&& !$child->vars['expanded']
271271
&& $child->vars['choices']
272272
) {
273-
if (null !== $firstKey = \array_key_first($child->vars['choices'])) {
273+
if (null !== $firstKey = array_key_first($child->vars['choices'])) {
274274
$values[$name] = $child->vars['choices'][$firstKey]->value ?? null;
275275
}
276276

0 commit comments

Comments
 (0)