Skip to content

Commit 95e0142

Browse files
committed
style: cs lint/fix
1 parent c2fb353 commit 95e0142

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/Arrayizes.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,8 @@ public function asArray(mixed $data, bool $cast = true): array
5454
public function toArray(): array
5555
{
5656
return \array_map(
57-
fn ($value) => \is_scalar($value) ? $value : $this->asArray($value, false), $this->getData()
57+
fn ($value) => \is_scalar($value) ? $value : $this->asArray($value, false),
58+
$this->getData()
5859
);
5960
}
6061
}

0 commit comments

Comments
 (0)