We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b8f4e49 + f670b62 commit 88e3c7bCopy full SHA for 88e3c7b
cli/Valet/PhpFpm.php
@@ -27,8 +27,9 @@ public function install(): void
27
28
$this->files->ensureDirExists(VALET_HOME_PATH.'/Log', user());
29
30
- $phpVersion = $this->brew->linkedPhp();
31
- $this->createConfigurationFiles($phpVersion);
+ foreach ($this->utilizedPhpVersions() as $phpVersion) {
+ $this->createConfigurationFiles($phpVersion);
32
+ }
33
34
// Remove old valet.sock
35
$this->files->unlink(VALET_HOME_PATH.'/valet.sock');
0 commit comments