Skip to content

Commit c8e2a0e

Browse files
committed
fix: add style guidelines changes
1 parent ad73ac0 commit c8e2a0e

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/Console/InstallCommand.php

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,6 @@ private function selectBoostFeatures(): Collection
233233
$installOptions = [
234234
'mcp_server' => 'Boost MCP Server',
235235
'ai_guidelines' => 'Package AI Guidelines (i.e. Framework, Inertia, Pest)',
236-
'style_guidelines' => 'Laravel Style AI Guidelines',
237236
];
238237

239238
if ($this->herd->isMcpAvailable()) {
@@ -245,7 +244,6 @@ private function selectBoostFeatures(): Collection
245244
options: $installOptions,
246245
default: $defaultInstallOptions,
247246
required: true,
248-
hint: 'Style guidelines are best for new projects',
249247
));
250248
}
251249

@@ -467,7 +465,7 @@ private function shouldInstallAiGuidelines(): bool
467465

468466
private function shouldInstallStyleGuidelines(): bool
469467
{
470-
return $this->selectedBoostFeatures->contains('style_guidelines');
468+
return false;
471469
}
472470

473471
private function shouldInstallMcp(): bool

0 commit comments

Comments
 (0)