@@ -19,7 +19,7 @@ class AnalyticsCommand implements ICommand {
1919 constructor ( protected $analyticsService : IAnalyticsService ,
2020 private $logger : ILogger ,
2121 private $errors : IErrors ,
22- private $options : ICommonOptions ,
22+ private $options : IOptions ,
2323 private settingName : string ,
2424 private humanReadableSettingName : string ) { }
2525
@@ -51,7 +51,7 @@ export class UsageReportingCommand extends AnalyticsCommand {
5151 constructor ( protected $analyticsService : IAnalyticsService ,
5252 $logger : ILogger ,
5353 $errors : IErrors ,
54- $options : ICommonOptions ,
54+ $options : IOptions ,
5555 $staticConfig : Config . IStaticConfig ) {
5656 super ( $analyticsService , $logger , $errors , $options , $staticConfig . TRACK_FEATURE_USAGE_SETTING_NAME , "Usage reporting" ) ;
5757 }
@@ -62,7 +62,7 @@ export class ErrorReportingCommand extends AnalyticsCommand {
6262 constructor ( protected $analyticsService : IAnalyticsService ,
6363 $logger : ILogger ,
6464 $errors : IErrors ,
65- $options : ICommonOptions ,
65+ $options : IOptions ,
6666 $staticConfig : Config . IStaticConfig
6767 ) {
6868 super ( $analyticsService , $logger , $errors , $options , $staticConfig . ERROR_REPORT_SETTING_NAME , "Error reporting" ) ;
0 commit comments