Feature: show list of geographical units which covers address in address details modal

This commit is contained in:
2023-03-15 15:56:46 +01:00
parent 71d0785ab4
commit 21e24c60c7
8 changed files with 119 additions and 9 deletions

View File

@@ -0,0 +1,15 @@
<?php
namespace Chill\MainBundle\Controller;
use Chill\MainBundle\Entity\Address;
use Symfony\Component\HttpFoundation\JsonResponse;
class AddressToReferenceMatcher
{
public function markAddressAsMatching(Address $address): JsonResponse
{
}
}