From d021be6a25d40ff8016de2ef9dbc43e33e52998a Mon Sep 17 00:00:00 2001 From: James Cole Date: Fri, 20 Mar 2020 18:05:40 +0100 Subject: [PATCH] Add telemetry (inactive) --- app/Console/Commands/UpgradeFireflyInstructions.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/app/Console/Commands/UpgradeFireflyInstructions.php b/app/Console/Commands/UpgradeFireflyInstructions.php index 83c7f1ee6d..3cfbb15f53 100644 --- a/app/Console/Commands/UpgradeFireflyInstructions.php +++ b/app/Console/Commands/UpgradeFireflyInstructions.php @@ -101,6 +101,9 @@ class UpgradeFireflyInstructions extends Command $text = $config[$compare]; } } + + // app('telemetry')->string('show-install-instructions', $version); + $this->showLine(); $this->boxed(''); if (null === $text) { @@ -147,6 +150,9 @@ class UpgradeFireflyInstructions extends Command $text = $config[$compare]; } } + + //app('telemetry')->string('show-update-instructions', $version); + $this->showLine(); $this->boxed(''); if (null === $text) {