Skip to content

Commit 8a2e19b

Browse files
fsmontergithub-actions[bot]
authored andcommitted
Fix styling
1 parent b97858a commit 8a2e19b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Commands/LoopMcpConfigCommand.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ private function generateCursorDeeplink(string $projectPath, ?string $userId, ?s
169169
$this->newLine();
170170

171171
$this->table([], [[
172-
json_encode(['laravel-loop-mcp' => $config], JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES)
172+
json_encode(['laravel-loop-mcp' => $config], JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES),
173173
]]);
174174
}
175175

@@ -237,7 +237,7 @@ private function generateCursorHttpDeeplink(string $baseUrl, string $ssePath): v
237237
'url' => rtrim($baseUrl, '/').$ssePath,
238238
];
239239

240-
if (!empty($headers)) {
240+
if (! empty($headers)) {
241241
$config['headers'] = [];
242242
foreach ($headers as $header) {
243243
$parts = explode(':', $header, 2);
@@ -263,7 +263,7 @@ private function generateCursorHttpDeeplink(string $baseUrl, string $ssePath): v
263263
$this->newLine();
264264

265265
$this->table([], [[
266-
json_encode(['laravel-loop-mcp' => $config], JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES)
266+
json_encode(['laravel-loop-mcp' => $config], JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES),
267267
]]);
268268

269269
$this->newLine();

0 commit comments

Comments
 (0)