@@ -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 });
@@ -423,7 +423,7 @@ private function getCachedEnvironmentVariables(): array
423423 */
424424 private function sanitizeEnvironmentValue (string $ name , string $ value ): ?string
425425 {
426- return match ($ name ) {
426+ return match ($ name ) {
427427 'COLUMNS ' , 'LINES ' => $ this ->sanitizeNumericValue ($ value ),
428428 'TERM ' => $ this ->sanitizeTermValue ($ value ),
429429 'CI ' , 'GITHUB_ACTIONS ' , 'GITLAB_CI ' => $ this ->sanitizeBooleanValue ($ value ),
@@ -497,7 +497,7 @@ private function getServerVar(string $name): ?string
497497 private function setEnvVar (string $ name , string $ value ): void
498498 {
499499 // Validate input parameters
500- if (empty ($ name ) ) {
500+ if (empty ($ name )) {
501501 return ;
502502 }
503503
@@ -535,7 +535,9 @@ private function clearEnvironmentCache(): void
535535 {
536536 // Reset our secure storage
537537 $ this ->secureEnvStorage = [];
538- } /**
538+ }
539+
540+ /**
539541 * Check if the current environment supports interactive terminal input
540542 *
541543 * @param OutputInterface $output
0 commit comments