From 0b4c3341634c65adfeca3186bf07458bee2a4fd8 Mon Sep 17 00:00:00 2001 From: Alejandro Celaya Date: Tue, 26 Feb 2019 22:42:33 +0100 Subject: [PATCH] Fixed typo --- module/Core/src/Service/VisitService.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/Core/src/Service/VisitService.php b/module/Core/src/Service/VisitService.php index 62e48010..dc3a11c9 100644 --- a/module/Core/src/Service/VisitService.php +++ b/module/Core/src/Service/VisitService.php @@ -35,7 +35,7 @@ class VisitService implements VisitServiceInterface /** @var Location $location */ $location = $geolocateVisit($visit); } catch (IpCannotBeLocatedException $e) { - if (!$e->isNonLocatableAddress()) { + if (! $e->isNonLocatableAddress()) { // Skip if the visit's IP could not be located because of an error continue; }