@@ -181,7 +181,7 @@ private function processBuildThemes(
181181 $ spinner = new Spinner (sprintf ("Building %s (%d of %d) ... " , $ themeNameCyan , $ currentTheme , $ totalThemes ));
182182 $ success = false ;
183183
184- $ spinner ->spin (function () use ($ validatedTheme , $ io , $ output , $ isVerbose , &$ successList , &$ success ) {
184+ $ spinner ->spin (function () use ($ validatedTheme , $ io , $ output , $ isVerbose , &$ successList , &$ success ) {
185185 $ success = $ this ->buildValidatedTheme ($ validatedTheme , $ io , $ output , $ isVerbose , $ successList );
186186 return true ;
187187 });
@@ -428,7 +428,7 @@ private function getCachedEnvironmentVariables(): array
428428 */
429429 private function sanitizeEnvironmentValue (string $ name , string $ value ): ?string
430430 {
431- return match ($ name ) {
431+ return match ($ name ) {
432432 'COLUMNS ' , 'LINES ' => $ this ->sanitizeNumericValue ($ value ),
433433 'TERM ' => $ this ->sanitizeTermValue ($ value ),
434434 'CI ' , 'GITHUB_ACTIONS ' , 'GITLAB_CI ' => $ this ->sanitizeBooleanValue ($ value ),
@@ -508,7 +508,7 @@ private function getServerVar(string $name): ?string
508508 private function setEnvVar (string $ name , string $ value ): void
509509 {
510510 // Validate input parameters
511- if (empty ($ name ) ) {
511+ if (empty ($ name )) {
512512 return ;
513513 }
514514
@@ -546,7 +546,9 @@ private function clearEnvironmentCache(): void
546546 {
547547 // Reset our secure storage
548548 $ this ->secureEnvStorage = [];
549- } /**
549+ }
550+
551+ /**
550552 * Check if the current environment supports interactive terminal input
551553 *
552554 * @param OutputInterface $output
0 commit comments