[WIP] refactorization to show details of an address

This commit is contained in:
2025-08-18 13:14:10 +02:00
parent e3aeab315f
commit 4e61821e5b
17 changed files with 341 additions and 84 deletions

View File

@@ -97,7 +97,9 @@ final readonly class AddressReferenceRepository implements AddressReferenceRepos
$result = $qb->executeQuery();
return $result->iterateAssociative();
foreach ($result->iterateAssociative() as $row) {
yield [...$row, 'positions' => json_decode($row['positions'], true, 512, JSON_THROW_ON_ERROR)];
}
}
/**