Skip to content

Commit ee75632

Browse files
pushpak1300github-actions[bot]
authored andcommitted
Fix code styling
1 parent d911705 commit ee75632

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

src/Install/CodeEnvironment/CodeEnvironment.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,6 +165,7 @@ public function mcpConfigKey(): string
165165
* @param array<int, string> $args
166166
* @param array<string, string> $env
167167
* @return bool
168+
*
168169
* @throws FileNotFoundException
169170
*/
170171
public function installMcp(string $key, string $command, array $args = [], array $env = []): bool
@@ -225,6 +226,7 @@ protected function installShellMcp(string $key, string $command, array $args = [
225226
* @param array<int, string> $args
226227
* @param array<string, string> $env
227228
* @return bool
229+
*
228230
* @throws FileNotFoundException
229231
*/
230232
protected function installFileMcp(string $key, string $command, array $args = [], array $env = []): bool
@@ -243,7 +245,7 @@ protected function installFileMcp(string $key, string $command, array $args = []
243245
: [];
244246

245247
$mcpKey = $this->mcpConfigKey();
246-
data_set($config, "$mcpKey.$key", collect([
248+
data_set($config, "{$mcpKey}.{$key}", collect([
247249
'command' => $command,
248250
'args' => $args,
249251
'env' => $env,

src/Install/Enums/McpInstallationStrategy.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ enum McpInstallationStrategy: string
99
case Shell = 'shell';
1010
case File = 'file';
1111
case None = 'none';
12-
}
12+
}

0 commit comments

Comments
 (0)