Skip to content

Commit 7e51cf8

Browse files
committed
refactor: adjust InstallCommand docblocks and structure for consistency and clarity
1 parent 447a5dc commit 7e51cf8

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
@@ -367,12 +367,12 @@ protected function enactGuidelines(): void
367367
$composedAiGuidelines = $composer->compose();
368368

369369
$longestAgentName = max(1, ...$this->selectedTargetAgents->map(fn ($agent) => Str::length($agent->agentName()))->toArray());
370-
/** @var CodingAgent $agent */
370+
/** @var CodeEnvironment $agent */
371371
foreach ($this->selectedTargetAgents as $agent) {
372372
$agentName = $agent->agentName();
373373
$displayAgentName = str_pad($agentName, $longestAgentName);
374374
$this->output->write(" {$displayAgentName}... ");
375-
375+
/** @var CodingAgent $agent */
376376
try {
377377
(new GuidelineWriter($agent))
378378
->write($composedAiGuidelines);

0 commit comments

Comments
 (0)