From 35d5c324e2aad6d187fab5517094699d7c427758 Mon Sep 17 00:00:00 2001 From: Bradley Date: Thu, 26 Sep 2024 10:17:30 +0100 Subject: [PATCH] Add method to get compiler to stop crying --- tests/Trait/GeocodeTraitTest.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tests/Trait/GeocodeTraitTest.php b/tests/Trait/GeocodeTraitTest.php index a802447..03936e3 100644 --- a/tests/Trait/GeocodeTraitTest.php +++ b/tests/Trait/GeocodeTraitTest.php @@ -94,6 +94,11 @@ final class GeocodeTraitTest extends TestCase return new class implements GeocodeInterface { use GeocodeTrait; + + public function getGeocodeData(): string + { + return ''; + } }; } }