Add types to consts

This commit is contained in:
brabli
2024-08-05 12:01:33 +01:00
parent 84ba22f287
commit 5c87bf35d5
2 changed files with 4 additions and 3 deletions

View File

@@ -10,7 +10,7 @@ use Symfony\Contracts\HttpClient\ResponseInterface;
class Geocoder
{
private const API_URL = "https://nominatim.openstreetmap.org/search";
private const string API_URL = "https://nominatim.openstreetmap.org/search";
public function __construct(private HttpClientInterface $client) {}