Update (disabled) telemetry settings.

This commit is contained in:
James Cole
2020-03-21 15:42:37 +01:00
parent cf4f76f211
commit f76585dc9b
48 changed files with 95 additions and 49 deletions

View File

@@ -112,6 +112,7 @@ class ApplyRules extends Command
$result = $this->verifyInput();
if (false === $result) {
// app('telemetry')->feature('executed-command-with-error', $this->signature);
return 1;
}
@@ -129,6 +130,8 @@ class ApplyRules extends Command
$this->warn(' --rules=1,2,...');
$this->warn(' --rule_groups=1,2,...');
$this->warn(' --all_rules');
// app('telemetry')->feature('executed-command-with-error', $this->signature);
return 1;
}
/** @var GroupCollectorInterface $collector */
@@ -162,7 +165,7 @@ class ApplyRules extends Command
}
$this->line('');
$this->line('Done!');
// app('telemetry')->feature('executed-command', $this->signature);
return 0;
}