1
0
mirror of https://github.com/laravel/valet.git synced 2026-02-04 08:10:07 +01:00

Merge pull request #1514 from saibotk/fix-php-fpm-config-reinstall

fix(php-fpm): correctly reconfigure all versions
This commit is contained in:
Matt Stauffer
2025-04-16 21:49:32 -04:00
committed by GitHub

View File

@@ -27,8 +27,9 @@ public function install(): void
$this->files->ensureDirExists(VALET_HOME_PATH.'/Log', user());
$phpVersion = $this->brew->linkedPhp();
$this->createConfigurationFiles($phpVersion);
foreach ($this->utilizedPhpVersions() as $phpVersion) {
$this->createConfigurationFiles($phpVersion);
}
// Remove old valet.sock
$this->files->unlink(VALET_HOME_PATH.'/valet.sock');