Skip to content
Snippets Groups Projects

chore: freshen this package up

Merged Jiří Pudil requested to merge update into master
1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
+ 1
1
@@ -74,7 +74,7 @@ final class ArrayType implements Type // @todo: There is implicit support for nu
public function fromDatabase(mixed $value): array
{
$result = $this->parseArray($value);
return map(
return map( // @phpstan-ignore return.type (will be fixed in later commits)
$result,
fn($item) => $item !== null ? $this->itemType->fromDatabase($item) : null,
);
Loading