Skip to content

Commit d955639

Browse files
committed
refactor: rename methods in InstallCommand for improved clarity and consistency
1 parent b0a963e commit d955639

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/Console/InstallCommand.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -67,16 +67,16 @@ class InstallCommand extends Command
6767

6868
public function handle(CodeEnvironmentsDetector $codeEnvironmentsDetector, Herd $herd, Roster $roster, Terminal $terminal): void
6969
{
70-
$this->bootstrapBoost($codeEnvironmentsDetector, $herd, $roster, $terminal);
70+
$this->bootstrap($codeEnvironmentsDetector, $herd, $roster, $terminal);
7171

7272
$this->displayBoostHeader();
7373
$this->discoverEnvironment();
74-
$this->collectInstallationPreference();
74+
$this->collectInstallationPreferences();
7575
$this->enact();
7676
$this->outro();
7777
}
7878

79-
private function bootstrapBoost(CodeEnvironmentsDetector $codeEnvironmentsDetector, Herd $herd, Roster $roster, Terminal $terminal): void
79+
private function bootstrap(CodeEnvironmentsDetector $codeEnvironmentsDetector, Herd $herd, Roster $roster, Terminal $terminal): void
8080
{
8181
$this->codeEnvironmentsDetector = $codeEnvironmentsDetector;
8282
$this->herd = $herd;
@@ -120,7 +120,7 @@ private function discoverEnvironment(): void
120120
$this->projectInstalledAgents = $this->discoverProjectAgents();
121121
}
122122

123-
private function collectInstallationPreference(): void
123+
private function collectInstallationPreferences(): void
124124
{
125125
$this->selectedBoostFeatures = $this->selectBoostFeatures();
126126
$this->enforceTests = $this->determineTestEnforcement(ask: false);

0 commit comments

Comments
 (0)