From 0f47a63262c4c7c47da7db150f96a0b6cac4832d Mon Sep 17 00:00:00 2001 From: Alejandro Celaya Date: Sat, 17 Aug 2019 16:42:28 +0200 Subject: [PATCH] Added missing link --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a37384d..1985eda 100644 --- a/README.md +++ b/README.md @@ -35,7 +35,7 @@ public function resolveIpLocation(string $ipAddress): Model\Location; These are the strategies provided implementing this interface: * `GeoLite2LocationResolver`: It makes use of a [GeoLite2](https://dev.maxmind.com/geoip/geoip2/geolite2/) database to resolve IP address locations. -* `IpApiLocationResolver`: It calls [IP API]() in order to resolve IP address locations (this API is a little bit fragile and easily ends up blocking callers). +* `IpApiLocationResolver`: It calls [IP API](http://ip-api.com) in order to resolve IP address locations (this API is a little bit fragile and easily ends up blocking callers). * `EmptyIpLocationResolver`: This one is a dummy resolver which always returns an empty location as if it was not capable of resolving the address location. * `CainIpLocationResolver`: It wraps a list of IP resolvers and calls them sequentially until one of them is capable of resolving the address location.