Skip to content

Commit edbaf1a

Browse files
committed
[CodeFactor] Apply fixes to commit a260693
1 parent a260693 commit edbaf1a

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/Console/Command/Theme/BuildCommand.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ private function processBuildThemes(
170170
$spinner = new Spinner(sprintf("Building %s (%d of %d) ...", $themeNameCyan, $currentTheme, $totalThemes));
171171
$success = false;
172172

173-
$spinner->spin(function() use ($themeCode, $io, $output, $isVerbose, &$successList, &$success) {
173+
$spinner->spin(function () use ($themeCode, $io, $output, $isVerbose, &$successList, &$success) {
174174
$success = $this->processTheme($themeCode, $io, $output, $isVerbose, $successList);
175175
return true;
176176
});
@@ -345,7 +345,7 @@ private function getCachedEnvironmentVariables(): array
345345
*/
346346
private function sanitizeEnvironmentValue(string $name, string $value): ?string
347347
{
348-
return match($name) {
348+
return match ($name) {
349349
'COLUMNS', 'LINES' => $this->sanitizeNumericValue($value),
350350
'TERM' => $this->sanitizeTermValue($value),
351351
'CI', 'GITHUB_ACTIONS', 'GITLAB_CI' => $this->sanitizeBooleanValue($value),

0 commit comments

Comments
 (0)