NUL && set', $output); file_put_contents(DOWNLOAD_PATH . '/.vcenv-cache', implode("\n", $output)); } array_map(fn ($x) => putenv($x), $output); } $after = count(getenv()); if ($after > $count) { logger()->debug('Applied ' . ($after - $count) . ' environment variables from Visual Studio setup'); } } public function getCompilerInfo(): ?string { if ($vcver = getenv('VisualStudioVersion')) { return "Visual Studio {$vcver}"; } return null; } public function isStatic(): bool { return false; } }