Skip to content

Commit 448fc85

Browse files
PeteBishwhipgithub-actions[bot]
authored andcommitted
Fix styling
1 parent 21e75fb commit 448fc85

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Commands/DebugCommand.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -193,11 +193,11 @@ private function outputToClipboard(): void
193193

194194
// Copy json to clipboard
195195
if (PHP_OS_FAMILY === 'Windows') {
196-
Process::run('echo ' . escapeshellarg($json) . ' | clip');
196+
Process::run('echo '.escapeshellarg($json).' | clip');
197197
} elseif (PHP_OS_FAMILY === 'Linux') {
198-
Process::run('echo ' . escapeshellarg($json) . ' | xclip -selection clipboard');
198+
Process::run('echo '.escapeshellarg($json).' | xclip -selection clipboard');
199199
} else {
200-
Process::run('echo ' . escapeshellarg($json) . ' | pbcopy');
200+
Process::run('echo '.escapeshellarg($json).' | pbcopy');
201201
}
202202
}
203203
}

0 commit comments

Comments
 (0)