From aa983f20f57c2edd9a886bb00e7a45aac43a7a65 Mon Sep 17 00:00:00 2001 From: alexmerlin Date: Tue, 18 Nov 2025 15:35:03 +0200 Subject: [PATCH] Issue #48: src/Command/GeoIpCommand.php: Make public Signed-off-by: alexmerlin --- src/Command/GeoIpCommand.php | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/src/Command/GeoIpCommand.php b/src/Command/GeoIpCommand.php index 571217b..4ece182 100644 --- a/src/Command/GeoIpCommand.php +++ b/src/Command/GeoIpCommand.php @@ -33,14 +33,13 @@ )] class GeoIpCommand extends Command { - protected LocationServiceInterface $locationService; /** @var string $defaultName */ - protected static $defaultName = 'geoip:synchronize'; + public static $defaultName = 'geoip:synchronize'; - public function __construct(LocationServiceInterface $locationService) - { + public function __construct( + protected LocationServiceInterface $locationService, + ) { parent::__construct(self::$defaultName); - $this->locationService = $locationService; } public function configure(): void