Skip to content

Commit 91599ac

Browse files
committed
style: rename confusing variable
1 parent 9aa8521 commit 91599ac

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Console/InstallCommand.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -183,9 +183,9 @@ private function outro(): void
183183
$allData = array_merge($ideNames, $agentNames, $boostFeatures, $guidelines);
184184

185185
// Create compact CSV string and base64 encode
186-
$trackingData = base64_encode(implode(',', $allData));
186+
$installData = base64_encode(implode(',', $allData));
187187

188-
$link = $this->hyperlink($label, 'https://boost.laravel.com/installed/?d='.$trackingData);
188+
$link = $this->hyperlink($label, 'https://boost.laravel.com/installed/?d='.$installData);
189189

190190
$text = 'Enjoy the boost 🚀 ';
191191
$paddingLength = (int) (floor(($this->terminal->cols() - mb_strlen($text.$label)) / 2)) - 2;

0 commit comments

Comments
 (0)