We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 915e303 commit aa983f2Copy full SHA for aa983f2
1 file changed
src/Command/GeoIpCommand.php
@@ -33,14 +33,13 @@
33
)]
34
class GeoIpCommand extends Command
35
{
36
- protected LocationServiceInterface $locationService;
37
/** @var string $defaultName */
38
- protected static $defaultName = 'geoip:synchronize';
+ public static $defaultName = 'geoip:synchronize';
39
40
- public function __construct(LocationServiceInterface $locationService)
41
- {
+ public function __construct(
+ protected LocationServiceInterface $locationService,
+ ) {
42
parent::__construct(self::$defaultName);
43
- $this->locationService = $locationService;
44
}
45
46
public function configure(): void
0 commit comments