Reformat code.

This commit is contained in:
James Cole
2020-03-21 15:43:41 +01:00
parent f76585dc9b
commit c6d17e9bd7
43 changed files with 50 additions and 2 deletions

View File

@@ -63,6 +63,7 @@ class ReportEmptyObjects extends Command
$this->reportBudgetLimits();
$end = round(microtime(true) - $start, 2);
$this->info(sprintf('Report on empty objects finished in %s seconds', $end));
// app('telemetry')->feature('executed-command', $this->signature);
return 0;
}

View File

@@ -68,6 +68,7 @@ class ReportIntegrity extends Command
$result = Artisan::output();
echo $result;
}
// app('telemetry')->feature('executed-command', $this->signature);
return 0;
}

View File

@@ -53,6 +53,7 @@ class ReportSum extends Command
public function handle(): int
{
$this->reportSum();
// app('telemetry')->feature('executed-command', $this->signature);
return 0;
}

View File

@@ -50,6 +50,7 @@ class RestoreOAuthKeys extends Command
public function handle(): int
{
$this->restoreOAuthKeys();
// app('telemetry')->feature('executed-command', $this->signature);
return 0;
}